如何传递函数中的常量以供PHP中的另一个函数使用?
我试图从一个处理程序传递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'
这可能吗?
您可能使用的是低于版本5.4的PHP版本。
看到这个答案:https://stackoverflow.com/a/9120871/633098
链接地址: http://www.djcxy.com/p/47283.html上一篇: How do I pass constants in a function to be used by another function in PHP?
下一篇: How to output a properly formatted JSON from a PHP file?