Heim  >  Artikel  >  Backend-Entwicklung  >  php正则检测是否为JSON格式的方法探讨

php正则检测是否为JSON格式的方法探讨

WBOY
WBOYOriginal
2016-07-25 08:57:321040Durchsuche
  1. $json_string = json_encode(array(
  2. 'blog.9696e.com'
  3. ));
  4. echo preg_match('/[^,:{}\\[\\]0-9.\-+Eaeflnr-u \n\r\t]/',$json_string) ? 'yes' : 'no';
  5. ?>
复制代码

用以上代码,检测是否为json格式,效果不错。

附,php处理json时中文问题的解决方法

把对象转换成json的时候,其中有个中文属性变成了null.

  1. $usr = new User();
  2. echo json_encode($usr);
  3. ?>
复制代码

没有中文时一切正常,输出如下: {"PlatformID":"123213","UserID":"1023"}

有中文会出现以下的二种异常情况。

情况1,对象本身的某个值为中文的属性是utf-8编码,则会有如下输出: {"PlatformID":"123213","UserID":"1023","UserName":"\u00b7\u00f0\u00b5\u00b2\u00c9\u00b1\u00b7\u00f0\u00cc\u00fc"} 其中的UserName是非人类语言,如果用firebug看下就是中文的。

情况2,非utf-8编码,输出会变成null: {"PlatformID":"123213","UserID":"1023","UserName":null}

查了手册后知道json_encode是只对utf-8有效,其它编码均会变为null.

如何解决编码转化的问题呢?来看下面的例子。 示例:

  1. private function to_utf8($in)
  2. {
  3. if (is_array($in)) {
  4. foreach ($in as $key => $value)
  5. {
  6. $out[$this->to_utf8($key)] = $this->to_utf8($value);
  7. }
  8. }
  9. elseif(is_string($in))
  10. {
  11. if(mb_detect_encoding($in) != "UTF-8")
  12. return utf8_encode($in);
  13. else
  14. return $in;
  15. }
  16. else
  17. {
  18. return $in;
  19. }
  20. return $out;
  21. }
  22. ?>
复制代码

测试: 1,把$usr->UserName直接输出,页面头设置charset=utf-8.乱码 2,echo json_encode($usr)输出UserName=null 3,页面头设置为charset=gbk,输出正确->可以确定原编码为gbk

结论: 1,保证页面字符集与数据库一致,输出一定正常 。 2,做json_encode时保证数据编码是utf-8,json_decode正常。 3,如果要对非utf-8字符做json_encode,先转换成utf-8。 4,对非utf-8字符做json_decode时,记得转换成原先的编码,否则会输出乱码。



Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn