Home Backend Development PHP Tutorial 奇怪的json_decode有关问题,为什么不能decode呢

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

Jun 13, 2016 pm 01:26 PM
decode quot rm

奇怪的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));
?>
Copy after login


结果如下:
 
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

Copy after login


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

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))

Copy after login


难道有什么隐式符号?



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

echo $a_rm1; 后查看原文件,就可看到
------解决方案--------------------
编码改为utf-8 就好了。注意去掉 BOM头。
Statement of this Website
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

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 Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Advanced usage and skill sharing of Oracle DECODE function Advanced usage and skill sharing of Oracle DECODE function Mar 08, 2024 am 10:30 AM

The DECODE function in Oracle database is a very commonly used function, which can select among a set of values ​​based on the result value of an expression. The syntax of the DECODE function is as follows: DECODE(expression, search_value1, result1, search_value2, result2,..., default_result) where expression is the expression to be compared, s

Oracle DECODE function detailed explanation and usage examples Oracle DECODE function detailed explanation and usage examples Mar 08, 2024 pm 03:51 PM

The DECODE function in Oracle is a conditional expression that is often used to return different results based on different conditions in query statements. This article will introduce the syntax, usage and sample code of the DECODE function in detail. 1. DECODE function syntax DECODE(expr,search1,result1[,search2,result2,...,default]) expr: the expression or field to be compared. search1,

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

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

The main difference between rmdir and rm commands in Linux! The main difference between rmdir and rm commands in Linux! Feb 20, 2024 am 09:30 AM

In the Linux system, the rmdir and rm commands are both used to delete files and directories. They are also one of the very basic commands. Although they have the same function, they have differences. So what are the rmdir and rm commands in Linux? What are the main differences? Let’s take a look at the specific content. In Linux, rmdir and rm are commands used to delete directories, but they have differences. The rmdir command is used to delete an empty directory. If there are files or subdirectories in the directory, it cannot be deleted and an error message will be displayed. Therefore, rmdir is usually used to empty a directory that contains no content. The rm command is used to delete files and directories. When deleting a directory, you need to add the -r option to delete the directory and its contents.

Basic usage analysis of DECODE function in Oracle Basic usage analysis of DECODE function in Oracle Mar 07, 2024 pm 04:09 PM

Analysis of the basic usage of the DECODE function in Oracle In the Oracle database, the DECODE function is a very commonly used function, used to implement logical judgment and numerical replacement similar to multi-layer if-else statements. The basic syntax of the DECODE function is as follows: DECODE(expr,search1,result1,search2,result2,...,default_result) where the parameter meanings are as follows: expr

Advanced skills and case studies on DECODE function in Oracle Advanced skills and case studies on DECODE function in Oracle Mar 07, 2024 pm 05:48 PM

The DECODE function in Oracle is a very powerful and commonly used function, used to implement logical judgment and value replacement in data query and processing. This article will explore advanced techniques and application cases of the DECODE function, and give specific code examples. 1. Introduction to DECODE function The DECODE function is a conditional expression function in Oracle database, which is used to implement logical judgment and value replacement similar to if-then-else. The syntax is as follows: DECODE(expr,

Detailed explanation and application scenarios of Oracle DECODE function examples Detailed explanation and application scenarios of Oracle DECODE function examples Mar 07, 2024 pm 12:51 PM

Oracle database is a popular relational database management system that provides a wealth of functions and tools to handle complex data operations. Among them, the DECODE function is one of the most commonly used functions, which can convert and process data according to specified conditions. This article will introduce Oracle's DECODE function in detail, including its syntax structure, functional features, and practical application scenarios, and provide specific code examples. 1. The syntax structure of the DECODE function The syntax structure of the DECODE function is as follows: D

Practical application guide and best practices for Oracle DECODE function Practical application guide and best practices for Oracle DECODE function Mar 07, 2024 pm 01:09 PM

The DECODE function in Oracle database is a very commonly used function, which can return different results based on conditional values. In actual data processing, the DECODE function can help us perform operations such as data conversion, conditional judgment, and result return. This article will introduce the usage of the DECODE function, provide practical application guidelines and best practices, and provide specific code examples. 1. Introduction to DECODE function The basic syntax of DECODE function is: DECODE(expression,

See all articles