是否可以只调用一行html文件?例如,如果您有此文件:
<!DOCTYPE html>
<html>
<head></head>
<body>
This is a test string.
This is another test string.
This is the final test string.
</body>
</html>
你能只调用第一个字符串,&#34;这是一个测试字符串。&#34;,这个文件?我认为有一种方法可以包含php和put&#34; example.html:5&#34;,但这似乎不起作用。
答案 0 :(得分:2)
不是大文件的最佳方法,但可以适用于您的示例:
//read file in to array
$lines=file('file.html');
//line 5 (array index start at 0)
echo $lines[4];