我有一个php的代码:
<?php
include('simple_html_dom.php');
$sContent = file_get_contents('http://iztv.com.tr/yayinakisiGunler.aspx?id=1');
$DOM = str_get_html($sContent);
foreach($DOM -> find('table tr') as $tr)
{
$saat = $tr -> find('td', 0)->innertext;
$program = $tr -> find('td', 1)->innertext;
$rating = $tr -> find('td', 2) -> find('img', 0);
if($rating)
{
$rating = $tr -> find('td', 2) -> find('img', 0) -> src;
}
$yayintipi = $tr -> find('td', 2) -> find('img', 1);
if($yayintipi)
{
$yayintipi = $tr -> find('td', 2) -> find('img', 1)->src;
}
$detay = $tr -> find('td', 3) -> find('a', 0);
if($detay)
{
$detay = $tr -> find('td', 3) -> find('a', 0) -> href;
}
$arr['saat'] = $saat;
$arr['program adi'] = $program;
$arr['rating'] = $rating;
$arr['yayin tipi'] = $yayintipi;
$arr['detay'] = $detay;
$arr2[]=$arr;
}
echo json_encode($arr2, true);
?>
当我在浏览器中编写php文件的路径时,它会像我想要的那样返回正确的JSON。这里没有问题。但我想使用我想要的任何链接:“http://iztv.com.tr/yayinakisiGunler.aspx?id=2”或“http://iztv.com.tr/yayinakisiGunler.aspx?id=3”或其他链接等。
如何在不更改代码的情况下执行此操作,只需编写浏览器的URL /路径?
答案 0 :(得分:1)
如果使用参数调用脚本,例如
example.com/myscript.php?id=2
您可以在脚本中使用名为id
的参数来控制您从中获取内容的网站上使用的参数。
<?php
include('simple_html_dom.php');
if ( ! empty($_GET['id']) {
$id = $_GET['id'];
} else {
// got no parameter ERROR
// or got no parameter assume 1
$id = 1;
}
$sContent = file_get_contents('http://iztv.com.tr/yayinakisiGunler.aspx?id=' . $id);
当然你应该在实际使用它之前清理$ _GET [&#39; id&#39;]参数,但是我已经把它留给了你。