0

我在谷歌上搜索如何通过 php 获取外部 url 的文本,但我看到一个代码,它在网站上显示文本而不添加 echo 及其变量。如何使用 php 函数在 url 上显示文本<?php echo $text; ?>。多谢!

4

2 回答 2

0

您可以简单地使用该file_get_content()方法来检索 URL 的内容。

<?php
$text = file_get_contents('http://www.example.com/file.php');
echo $text;
?>
于 2013-05-14T08:39:02.497 回答
0

使用file_get_contentscurl 扩展

于 2013-05-14T08:40:13.503 回答