意外的T_ECHO链接?

时间:2015-03-10 10:07:29

标签: php json

我在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

1 个答案:

答案 0 :(得分:2)

你需要使用串联来加点,如下所示:

$json_file = file_get_contents('link.com?id_select='.$id);