标签: php arrays
我正在设计一个文件服务系统,我希望能够从html表单中添加链接,文件和其他东西,我可以将输入的文本保存到文本文件中,但这对数组没用,如何将文本文件的内容保存到数组中?像array = file_get_contents('array-file-list.txt');
答案 0 :(得分:1)
如果您不需要任何特殊处理,this应该做您正在寻找的事情
$lines = file($filename, FILE_IGNORE_NEW_LINES);