我在php中有一个小问题
if (isset($_GET['id']) && is_numeric($_GET['id'])) {
$id = $_GET['id'];
// copy file content into a string var
$json_file = file_get_contents('link.com?id_select='echo $id;');
如何在链接中显示GET ID的值?
谢谢< 3
答案 0 :(得分:2)
你需要使用串联来加点,如下所示:
$json_file = file_get_contents('link.com?id_select='.$id);