我需要编写与此 php 代码等效的代码
json_encode(utf8_encode())
在客观-c
我已经实现了相当于 utf8_encode 的
[NSString stringWithCString:[testString cStringUsingEncoding:NSUTF8StringEncoding] encoding:NSASCIIStringEncoding]
所以现在,我需要实现相当于 json_encode 的 php 函数。
输入:“http://www.mydomain.com/s?c=Théâtre,Cinéma”
预期输出:“http://www.mydomain.com/s?c=Th\u00c3\u00a9\u00c3\u00a2tre,Cin\u00c3\u00a9ma”
有没有人有有效的方法来做到这一点?