例如,如何通过添加ID和权重或使用JSON仅添加ID来获得ISSET搜索?
例如example.php?tag = id = 3343&weight = alot
<?php
header('Content-Type: application/json');
$tags= array();
$data = (object) [];
$data->id= "3343";
$data->weight= "alot";
$data->year= 42;
array_push( $data);
if( isset( $_GET['tag'])){
echo json_encode($tags);
}
?>
答案 0 :(得分:0)
isset的功能可以采用多个参数,您可以像这样进行更改:
if( isset( $_GET['tag'],$_GET['weight'], ... ))
{
echo json_encode($tags);
}
我希望这就是你想要的。