search
HomeBackend DevelopmentPHP Tutorial 奇怪的json_decode有关问题,为什么不能decode呢

奇怪的json_decode问题,,为什么不能decode呢?

PHP code
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

-->
<?php $rm = '5e
?{"return":"error","errorcode":400,"errorinfo":"\u7528\u6237\u540d\u5df2\u88ab\u6ce8\u518c"}
0'; //注意这里面有2个换行符,在5e后面和0前面
    $a_rm = explode("\r\n", $rm);
    $a_rm1 = $a_rm[1];
    echo $a_rm1;
    echo "<pre class="brush:php;toolbar:false">";var_dump(json_decode($a_rm1, true));
?>


结果如下:
 
PHP code
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

-->{"return":"error","errorcode":400,"errorinfo":"\u7528\u6237\u540d\u5df2\u88ab\u6ce8\u518c"}

NULL



这样不行,,下面的方法可以。为什么呢?

PHP code
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

-->
$aa = '{"return":"error","errorcode":400,"errorinfo":"\u7528\u6237\u540d\u5df2\u88ab\u6ce8\u518c"}';
    var_dump(json_decode($aa))



难道有什么隐式符号?



------解决方案--------------------

echo $a_rm1; 后查看原文件,就可看到
------解决方案--------------------
编码改为utf-8 就好了。注意去掉 BOM头。
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Oracle DECODE函数的高级用法及技巧分享Oracle DECODE函数的高级用法及技巧分享Mar 08, 2024 am 10:30 AM

Oracle数据库中的DECODE函数是一个非常常用的函数,它可以根据一个表达式的结果值在一组值中进行选择。DECODE函数的语法如下:DECODE(expression,search_value1,result1,search_value2,result2,...,default_result)其中,expression是要进行比较的表达式,s

Oracle DECODE函数详解及用法示例Oracle DECODE函数详解及用法示例Mar 08, 2024 pm 03:51 PM

Oracle中的DECODE函数是一种条件表达式,常用于在查询语句中根据不同的条件返回不同的结果。本文将详细介绍DECODE函数的语法、用法和示例代码。一、DECODE函数语法DECODE(expr,search1,result1[,search2,result2,...,default])expr:要进行比较的表达式或字段。search1,

php提交表单通过后,弹出的对话框怎样在当前页弹出,该如何解决php提交表单通过后,弹出的对话框怎样在当前页弹出,该如何解决Jun 13, 2016 am 10:23 AM

php提交表单通过后,弹出的对话框怎样在当前页弹出php提交表单通过后,弹出的对话框怎样在当前页弹出而不是在空白页弹出?想实现这样的效果:而不是空白页弹出:------解决方案--------------------如果你的验证用PHP在后端,那么就用Ajax;仅供参考:HTML code<form name="myform"

Linux中rmdir和rm命令的主要区别!Linux中rmdir和rm命令的主要区别!Feb 20, 2024 am 09:30 AM

  在Linux系统中,rmdir和rm命令都是用来删除文件和目录的,也是非常基础的命令之一,虽然两者有着相同的作用,但却有着不同之处,那么Linux中rmdir和rm命令的主要区别是什么?我们来看看具体内容介绍。  在Linux中,rmdir和rm是用来删除目录的命令,但它们之前存在不同之处。rmdir命令用于删除空目录,如果目录中有文件或子目录,则无法删除并会显示错误消息。因此,rmdir通常用于清空不包含任何内容的目录。rm命令用于删除文件和目录,在删除目录时需加-r选项以删除目录及其内容

Oracle中DECODE函数的基本用法解析Oracle中DECODE函数的基本用法解析Mar 07, 2024 pm 04:09 PM

Oracle中DECODE函数的基本用法解析在Oracle数据库中,DECODE函数是一种非常常用的函数,用于实现类似于多层if-else语句的逻辑判断和数值替换。DECODE函数的基本语法如下:DECODE(expr,search1,result1,search2,result2,...,default_result)其中参数含义如下:expr

Oracle中DECODE函数的高级技巧与案例探讨Oracle中DECODE函数的高级技巧与案例探讨Mar 07, 2024 pm 05:48 PM

Oracle中的DECODE函数是一种非常强大且常用的函数,用于在数据查询和处理中实现逻辑判断和值替换。本文将探讨DECODE函数的高级技巧和应用案例,并给出具体的代码示例。1.DECODE函数介绍DECODE函数是Oracle数据库中的一个条件表达式函数,用于实现类似于if-then-else的逻辑判断和值替换。其语法如下所示:DECODE(expr,

Oracle DECODE函数实例详解与应用场景Oracle DECODE函数实例详解与应用场景Mar 07, 2024 pm 12:51 PM

Oracle数据库是一种流行的关系型数据库管理系统,它提供了丰富的函数和工具来处理复杂的数据操作。其中,DECODE函数是一个非常常用的函数之一,可以根据指定的条件对数据进行转换和处理。本文将详细介绍Oracle的DECODE函数,包括语法结构、功能特点以及实际应用场景,并提供具体的代码示例。1.DECODE函数的语法结构DECODE函数的语法结构如下:D

Oracle DECODE函数的实际应用指南及最佳实践Oracle DECODE函数的实际应用指南及最佳实践Mar 07, 2024 pm 01:09 PM

Oracle数据库中的DECODE函数是一种非常常用的函数,它可以根据条件值来返回不同的结果。在实际的数据处理中,DECODE函数能够帮助我们进行数据转换、条件判断和结果返回等操作。本文将介绍DECODE函数的用法,提供实际应用指南和最佳实践,同时配以具体的代码示例。1.DECODE函数介绍DECODE函数的基本语法为:DECODE(expression,

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software