{site_name}

{site_name}

🌜 搜索

在PHP中,fputs函数用于将字符串写入文件

php 𝄐 0
php fputs函数,php fputs函数 怎么写入换行
在PHP中,fputs函数用于将字符串写入文件。它的使用方法如下所示:

php
$file = fopen("example.txt", "w");
if ($file) {
$string = "Hello, World!";
fputs($file, $string);
fclose($file);
echo "String written to file successfully.";
} else {
echo "Unable to open file.";
}


以上代码中,我们首先使用fopen函数打开一个名为example.txt的文件,并指定模式为写入模式("w")。然后,我们使用fputs函数将字符串"Hello, World!"写入到文件中。最后,我们使用fclose函数关闭文件句柄,并输出写入成功的提示。

请注意,从PHP 5.3.0版本开始,fputs函数已被废弃,推荐使用fwrite函数来实现相同的功能。因此,如果你使用的是PHP 5.3.0版本或更高版本,建议使用fwrite替代fputs。

php
$file = fopen("example.txt", "w");
if ($file) {
$string = "Hello, World!";
fwrite($file, $string);
fclose($file);
echo "String written to file successfully.";
} else {
echo "Unable to open file.";
}


上述代码与之前的示例代码相同,只是使用了fwrite函数替代了fputs函数。