public function toJSON($array) {
$encoded= '';
if (is_array ($array)) {
// if (!function_exists('json_encode')) {
// if (@ include_once (XPDO_CORE_PATH . 'json/JSON.php')) {
// $json = new Services_JSON();
// $encoded= $json->encode($array);
// }
// } else {
$encoded= json_encode($array, JSON_UNESCAPED_UNICODE);
//}
}
return $encoded;
}