gpt4 book ai didi

php - 错误 : Undifined Variable when creating new file

转载 作者:太空宇宙 更新时间:2023-11-03 11:31:02 25 4
gpt4 key购买 nike

我正在尝试使用 php 创建一个新的 .php 文件。但是我收到以下错误:

error : Notice: Undefined variable: conn in C:\xampp\htdocs\create\index.php on line 4.

这里是示例代码:

<?php
$myfile = fopen("koneksi.php", "w") or die("Unable to open file!");

$txt = "<?php $conn=mysqli_connect('localhost', 'root', '', 'crm');
date_default_timezone_set('Asia/Jakarta');
?>";
fwrite($myfile, $txt);
fclose($myfile);
?>

最佳答案

为您的 $txt 变量从双引号切换为单引号 - 例如

$txt = '<?php $conn=...';

或者用反斜杠转义你的美元符号

关于php - 错误 : Undifined Variable when creating new file,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49872595/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com