我正在尝试编写一个函数,该函数采用两个参数(文件名和放入其中的字符串)来创建一个包含字符串的新文件。
<?php
function writeFile($name, $string) {
$text = $string;
$fh = fopen($name + ".txt", 'w') or die("Could not create the file.");
fwrite($fh, $text) or die("Could not write to the file.");
fclose($fh);
echo "File " . $name . ".txt created!";
}
writeFile("testovFail", "Lorem ipsum dolor sit amet");
if(file_exists("testovFail.txt")) echo "<br>File exists!";
?>
这是我到目前为止所拥有的,该函数回显文件已创建,但是当我运行 IF 条件检查文件是否已创建时,它返回它不是。