在我的页面中,我将用户的值传递给网址并返回序列化值。
$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
值?
答案 0 :(得分:1)
没有异步请求,因此在获取内容
后将始终到达if语句