我有一个脚本,它以这种格式编写站点 url 和站点名称:
::<a href='http://master7np.tk>Master7np</a>::<a href='http://master-land.net>
Master-land</a>::<a href='http://nischal.tk>nischal.tk</a>
::
我想要一个 php 脚本,它从网页中的某个点显示这个随机 url
这是原件,但它不起作用——我的意思是它只显示:
"<a href='http://master7np.tk>Master7np</a>"
但它应该随机显示(不仅仅是第一个)。
<?
$xfile = @file("/home/webtraff/public_html/ads.txt");
$random_num = rand (0,count($xfile)-1);
$udata = explode("::",$xfile[$random_num]);
echo "$udata[1]";
?>