echo json&出口

时间:2014-06-18 10:44:30

标签: php json exit

if($status == 'close') {
    $values = array(
                 'error_description' => 'Sorry lesson is already closed.'
              );
    die( json_encode( $values ) );
}

/*
    Write codes here if status is not close
*/
$values = array(
             'error_description' => null
          );
die( json_encode( $values ) );

我想要的是当状态接近时,它将停在那里并且直到第二次死亡才会进行处理。 我的问题是,当状态接近时,它仍然处理直到第二个死(json_encode($ values)); 难道我做错了什么?谢谢!

0 个答案:

没有答案