奇怪的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头。

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

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

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

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.

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

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,

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

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,
