📄 9-14.php
字号:
<?php
echo "<html>"; //输出标准HTML内容
echo "<head>";
echo "<title>";
echo "使用file_get_contents函数获取文件内容";
echo "</title>";
echo "</head>";
echo "<body>";
$file="temp.txt"; //定义文件名
echo "文件".$file."的内容为:"; //输出内容
echo "<p>";
$result=file_get_contents($file); //使用file_get_content()函数获取文件内容
echo "<pre>";
echo $result; //输出结果字符串
echo "</pre>";
echo "</body>";
echo "</html>";
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -