我有链接示例http://www.9apps.com/android-games/Flopfrog/ 我想要的是,如果有人搜索flopfrog,它应该从我拥有所有链接的数据库中搜索并找到详细信息。我正在尝试从最近1周。这是我的代码。我能够获得标签我想要的是超过10k链接如果sombody搜索flopfrog它应该从txt文件中找到所有链接所在的那个单词而不是这一步
<?php
$url = 'http://www.9apps.com/android-games/Flopfrog/';
$content = file_get_contents($url);
$first_step1 = explode( '<h1 class="name">' , $content );
$second_step1 = explode("</h1>" , $first_step1[1] );
echo "the name of the app is ". $second_step1[0]." this is the test";
echo "<br>";
echo "<br>";
echo "<br>";
echo $second_step1[0];