|
Server IP : 10.128.40.6 / Your IP : 216.73.216.233 Web Server : Apache System : Linux webd006.cluster128.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : logmcpe ( 111175) PHP Version : 7.3.33 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0705) : /home/logmcpe/www/mcg/pages/feuillesroute/../ |
| [ Home ] | [ C0mmand ] | [ Upload File ] |
|---|
<?php
// exit() ;
include 'code/init.php' ;
//On récupère le contenu brut du fichier xml modèle
$myContent = file_get_contents("facture.doc");
//On remplace les mots-clés, un à un
$myContent = str_replace("@NOM_CLIENT@",$customer->getName(),$myContent);
$myContent = str_replace("@ADRESSE_CLIENT@",$customer->getAddressLine(),$myContent);
$myContent = str_replace("@CP_CLIENT@",$customer->getPostalCode(),$myContent);
...
//On crée le fichier généré
$newFileHandler = fopen("/cheminDuNouveauFichier/nomDuFichier.doc","a");
fwrite($newFileHandler,$myContent);
fclose($newFileHandler);
?>