当我尝试使用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");
我不知道我是否正确连接变量。
答案 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");
}