在继续前进之前获得成功确认

时间:2016-03-01 08:07:52

标签: php

在我的页面中,我将用户的值传递给网址并返回序列化值。

$test = unserialize ( file_get_contents ( "http://www.website.com/?info=$inf" ) );
$date = $test["dob"];
$id = $test["id"];
if($date != ""){
    //do something
} else{
    //do something else
}

//continue with the rest

如何在移至if语句行之前确定返回$test值?

1 个答案:

答案 0 :(得分:1)

没有异步请求,因此在获取内容

后将始终到达if语句