首页 行业资讯 宠物日常 宠物养护 宠物健康 宠物故事

php如何动态读取一个文件内容?

发布网友 发布时间: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

那你就读文件,取值呗...

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com