我在google上搜索如何通过php获取外部URL的文本,但我看到一个代码,它在网站上显示文本而不添加echo及其变量。如何使用php函数<?php echo $text; ?>
在URL上显示文本。非常感谢!
答案 0 :(得分:0)
您只需使用file_get_content()
方法检索网址内容即可。
<?php
$text = file_get_contents('http://www.example.com/file.php');
echo $text;
?>
答案 1 :(得分:0)