编程语言
首页 > 编程语言> > php – 使用文件处理函数将逗号放在txt文件中

php – 使用文件处理函数将逗号放在txt文件中

作者:互联网

这是我的代码

<?php

  $filename =  'names.txt';
  $file = fopen($filename, 'w');
  fwrite($file, implode(", ", $filename));

?>

我的names.txt文件数据是这样的

saad
Alex
Ashmil
Shumail
Fredrik

除了最后一个名字之外,我希望在每个名字后加上一个qoma. .但是我收到了“错误的论点传递给内爆功能”的错误.告诉我现在该怎么办?

预期的产出应该是

萨德,亚历克斯,阿什米尔,舒梅尔

解决方法:

也试试这个.
它工作……

<?php

$file = 'names.txt';
$array = file($file); // Creates an array of each line
$array = array_slice($array,0,-1); // Pops the last element of an array
$string = implode(',', $array); // Implode
file_put_contents($file, str_replace("\n","",$string));


?>

标签:file-handling,php
来源: https://codeday.me/bug/20190729/1567343.html