有没有办法得到一个简单的PHP代码,它只显示txt文档中的文本,这是在网址上?
这是我到目前为止所得到的。我确定我错过了什么〜
<?
$text = file_get_contents('https://dl.dropboxusercontent.com/u/28653637/Snip/Snip/Snip.txt');
fopen ($text)
?>
猜猜你无法打开它,因为它不在驱动器上。任何解决方法,或修复你们可以帮助我吗?
谢谢(:
答案 0 :(得分:6)
太容易了! :)
$text = file_get_contents('https://dl.dropboxusercontent.com/u/28653637/Snip/Snip/Snip.txt');
echo $text;
说明:
file_get_contents()
将返回远程文件的内容,并将其分配给$text
变量。然后,您只需使用echo
语句
备用:使用readfile()
功能。它将直接输出文件的内容:
readfile('https://dl.dropboxusercontent.com/u/28653637/Snip/Snip/Snip.txt');
答案 1 :(得分:1)
您无需打开它。它已作为字符串附加到变量$text
。
$text = file_get_contents('https://dl.dropboxusercontent.com/u/28653637/Snip/Snip/Snip.txt');
echo $text;
//Outputs "“Why Don't You Get A Job?” ― The Offspring"