PHP中的Concat URL

时间:2016-11-22 12:02:56

标签: php url concatenation file-get-contents

当我尝试使用URL连接变量

时出现问题

这有效:

$id = 123;
$url = file_get_contents("http://127.0.0.1:8080/api/table.json?output=html&udptype=trap&udpmsgid=".$id."&content=udpmessage");

但这不起作用

$id = $_GET['id'];
$url = file_get_contents("http://127.0.0.1:8080/api/table.json?output=html&udptype=trap&udpmsgid=".$id."&content=udpmessage");

我不知道我是否正确连接变量。

2 个答案:

答案 0 :(得分:4)

试试这个,

if (x.Email.length >= 0) {

答案 1 :(得分:3)

试试这个,使用 isset

if(isset($_GET['id']))
{
   $id = $_GET['id'];
   $url = file_get_contents("http://127.0.0.1:8080/api/table.json?output=html&udptype=trap&udpmsgid=".$id."&content=udpmessage");
}