PHP JSON If或Else

时间:2016-06-22 11:30:38

标签: php json

我试图编写一个PHP脚本,所以如果网络类型是JSON提要,我拉动表示触发了移动事件,如果没有,则触发另一个事件。我无法弄清楚if或者其他,我尝试了很多变种。

代码:

echo( "Network Type: " . $decoded_response['current_carrier']['network_type']); 
if ($decoded_response['current_carrier']['network_type']) = 'mobile') {
    echo "Event1"; 
} else {
    echo "Event2";
}

1 个答案:

答案 0 :(得分:2)

if ($decoded_response['current_carrier']['network_type']) = 'mobile'){

也许这应该是

if ($decoded_response['current_carrier']['network_type'] == 'mobile'){

您使用单=代替==来检查是否相等。 =会分配而不是测试。