我正在尝试将 JSON 常量从处理程序传递到我想要序列化为 JSON 的对象。当我尝试以下代码时:
class AJAXHandler {
public function getPrettyPrint() {
$jh = new JSONHandler();
$jh->getJSON(JSON_PRETTY_PRINT | JSON_FORCE_OBJECT);
}
}
class JSONHandler {
protected $id;
protected $name;
public function getJSON($json_constants) {
if (isset($json_constants)) {
return json_encode(get_object_vars($this), $json_constants);
} else {
return json_encode(get_object_vars($this));
}
}
}
我得到:
Message: Use of undefined constant JSON_PRETTY_PRINT - assumed 'JSON_PRETTY_PRINT'
这可能吗?