function jsonString($s) {
$temp = preg_split('/(?<!^)(?!$)/u', $s );
$n = count($temp);
for ($i = 0; $i < $n; $i++) {
if ($temp[$i] == ':' && $temp[$i + 1] == '"') {
for ($j = $i + 2; $j < $n; $j++) {
if ($temp[$j] == '"') {
if ($temp[$j + 1] != ',' && $temp[$j + 1] != '}') {
$temp[$j] = '”';
} else if ($temp[$j + 1] == ',' || $temp[$j + 1] == '}') {
break;
} else if($temp[$j] == '-'){
$temp[$j] = ' ';
}
}
}
}
}
return implode('',$temp);
}
辅导费