Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在谷歌上搜索如何通过 php 获取外部 url 的文本,但我看到一个代码,它在网站上显示文本而不添加 echo 及其变量。如何使用 php 函数在 url 上显示文本<?php echo $text; ?>。多谢!
<?php echo $text; ?>
您可以简单地使用该file_get_content()方法来检索 URL 的内容。
file_get_content()
<?php $text = file_get_contents('http://www.example.com/file.php'); echo $text; ?>
使用file_get_contents或curl 扩展