PHP
file_get_contents() 函数用于读取该文件的内容为字符串。该功能还能够读取URL内容。
1. filename 是文件或URL的名称。
2. include_path 如果启用,在include_path文件中搜索
3. context 设置的选项来修改流的方式
4. offset 此值指定起始文件的位置读取。
5. maxlen 此值指定要读取的字节数。
语法:
PHP file_get_contents() 函数使用以下语法。
string file_get_contents(string $filename, bool $include_path = false, resource $context, int $offset = 0, int $maxlen)
例1:读取文件内容字符串
这个PHP示例脚本会从文件中读取和存储内容到字符串变量。
<?php
$content = file_get_contents("input.txt");
echo $content;
?>
例2:从阅读到的URL字符串内容
这个PHP脚本示例将读取URL的内容,并存储到字符串变量。
<?php
$content = file_get_contents("http://example.com");
echo $content;
?>