📅  最后修改于: 2023-12-03 15:33:28.956000             🧑  作者: Mango
PHP file_get_contents()函数是一个内置函数,用于读取文件内容。它接受一个文件名作为参数并返回文件的内容。file_get_contents()函数可以读取本地文件或远程URL。
file_get_contents(filename, include_path, context, start, length)
参数说明:
读取本地文件:
<?php
$file = 'example.txt';
$content = file_get_contents($file);
echo $content;
?>
读取远程URL:
<?php
$url = 'https://www.example.com/';
$content = file_get_contents($url);
echo $content;
?>