发布网友 发布时间:2022-04-21 12:04
共5个回答
热心网友 时间:2023-07-28 02:38
PHP 中的 file_get_contents() 函数可以实现
file_get_contents() 函数把整个文件读入一个字符串中。
和 file() 一样,不同的是 file_get_contents() 把文件读入一个字符串。
file_get_contents() 函数是用于将文件的内容读入到一个字符串中的首选方法。如果操作系统支持,还会使用内存映射技术来增强性能。
例如:
<?php
echo file_get_contents("test.txt");
?>
热心网友 时间:2023-07-28 02:38
我想可以用
file_get_contents();
和
正则匹配来获取
preg_match()
热心网友 时间:2023-07-28 02:39
$content = file_get_contents('test.ini');
$str = str_replace("\n", "&",str_replace("\r", "",$content));
$array = array();
parse_str($str, $array);
print_r($array);
echo $array['myage'];
$array['myage']就是myage的值。
热心网友 时间:2023-07-28 02:39
parse_ini_file
如果你的ini标准的话~
参考资料:http://cn.php.net/manual/zh/function.parse-ini-file.php
热心网友 时间:2023-07-28 02:40
那你就读文件,取值呗...