php用file_get_contents函数读取文件

1.读取结果为字符串

$str = file_get_contents('keywords.txt');
var_dump($str);

2.读取结果为数组

$str = file_get_contents('keywords.txt');
$arr = explode("\r\n", $keywords);  //用换行分割,得到的是每一行数据
var_dump($arr);

3.其他函数

(1)  file()
(2)  $f = fopen('keywords.txt',"r");
     $str = fread($f,filesize('keywords.txt'));//指定读取大小,这里把整个文件内容读取出来
     fclose($fp);
...  其他的就不列举了
总结:还是用file_get_contents方便记忆,代码也相当比较少

你可能感兴趣的:(php用file_get_contents函数读取文件)