我在里面写了一个这样的链接
('http://torrentz.eu/search?f='.the_title());
但是 .thetitle() 部分不起作用。我的网站看到的是文字。有人能帮我吗 ?
我的完整代码是:
<div id="proluk" style="height:300px;width:500px;background:#ff0;overflow:scroll;overflow-x:hidden;">
<?
$sayfa = file_get_contents('http://torrentz.eu/search?f='.the_title());
preg_match_all('~<a href="(.*?)">(.*)</a>~', $sayfa, $cikti);
foreach ($cikti[1] as $link) {
echo '<a href="http://torrentz.eu'.$link .'" > Torrent İndir <br />';
}
?>
</div>
编辑:这是一个 worpress 博客,所以 the_title() 给我页面的标题我有一个游戏网站,我尝试在 torrentz.eu 中提取相同的游戏,但我的 file_get_contents 有语法问题(我猜)它是有效的:
sayfa = file_get_contents('http://torrentz.eu/search?f=somegamename');
但它不起作用:
sayfa = file_get_contents('http://torrentz.eu/search?f='.the_title());
我的网站是:http ://www.oyundeay.org 你可以看到帖子里面的例子(黄色区域)