我有一个显示此内容的网页:http://i.imgur.com/QUkMoiC.jpg 只是纯文本。我需要将其包含在另一个php网页中,例如
$string = include('http://77.144.233.158:4032/currentsong?sid=1');
echo $string;
所以这可以归还“King crimson - Moonchild - Lyrics”。 但这不起作用。
我该怎么办?
答案 0 :(得分:4)
Include将评估指定文件中的内容(并将其作为PHP运行)。例如,如果你有:
$str = 'King crimson - Moonchild - Lyrics';
您可以包含它,然后回显$str
以获得您想要的内容。
我认为您所寻找的是file_get_contents()
:
$string = file_get_contents('http://77.144.233.158:4032/currentsong?sid=1');
echo $string;
来自文档:
file_get_contents()是将文件内容读入字符串的首选方法。如果操作系统支持,它将使用内存映射技术来提高性能。