2017-10-09 91 views
2

我正在一個項目中,我想保存一個修改並保存一個基於用戶填寫表單的名稱中的模板。我找到了一種方法來保存文件,但我想使用模板和修改基於用戶填寫表單從模板自動生成頁面

<?php 
    $name='kavin'; 
    $fh = fopen($name + ".html", 'w') or die("Could not create the file."); 
    fwrite($fh, $text) or die("Could not write to the file."); 
    fclose($fh); 
    echo "File " . $name . ".html created!"; 
?> 

回答

0

在該模板的價值做一個模板,使用{用戶名}作爲佔位符值在模板中。

$name = 'kavin'; 
$template = file_get_contents('path/to/my/template.php'); 
$template = str_replace('{username}', $name, $template); 

file_put_contents($name . '.html', $template);