我很想让安装文件使用下面的字符串创建配置文件,但我不断收到此错误:解析错误:语法错误,意外的 T_CONSTANT_ENCAPSED_STRING in...
$tempcon = '
<?php
// Give Usage string for Config File
if(isset($_GET["gimi"])) {
die('"' . str_replace('\\','\\\\',__FILE__) . '"'); // <--- The error is on this line!
}
$dbhost = "'. $_POST["dbhost"] .'"; // Database Host Address
$dbname = "'. $_POST["dbname"] .'"; // Database Name
$dbuser = "'. $_POST["dbuser"] .'"; // Database Username
$dbpass = "'. $_POST["dbpass"] .'"; // Database Password
?>';
我究竟做错了什么?
提前致谢,
罗伯特