本文整理汇总了PHP中JavaScriptHelper::MakeJsonEncodable方法的典型用法代码示例。如果您正苦于以下问题:PHP JavaScriptHelper::MakeJsonEncodable方法的具体用法?PHP JavaScriptHelper::MakeJsonEncodable怎么用?PHP JavaScriptHelper::MakeJsonEncodable使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类JavaScriptHelper
的用法示例。
在下文中一共展示了JavaScriptHelper::MakeJsonEncodable方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: toJSON
/**
* Our specialized json encoder. Strings will be converted to UTF-8. Arrays will be recursively searched and
* both keys and values made UTF-8. Objects will be converted with json_encode, and so objects that need a special
* encoding should implement the jsonSerializable interface. See below
* @param mixed $objValue
* @return string
*/
public static function toJSON($objValue)
{
assert('is_array($objValue) || is_object($objValue)');
// json spec says only arrays or objects can be encoded
$objValue = JavaScriptHelper::MakeJsonEncodable($objValue);
$strRet = json_encode($objValue);
if ($strRet === false) {
throw new QCallerException('Json Encoding Error: ' . json_last_error_msg());
}
return $strRet;
}