json_decode decodes the JSON format string, accepts a JSON format string and converts it into a PHP variable. But when running json_decode, the memory may be exceeded. What should I do?
If you use PHP's json_decode function to parse a JSON string, and the JSON string contains an array with a large number of elements, then you need to be careful that PHP exceeds the memory limit during the parsing process. .
The author encountered a JSON file that needed to be parsed during development. The JSON contained an array composed of many MAC addresses, like this:
{ "name": "MAC File", "date": "2017-11-08", "macList": [ "11-11-11-11-11-11", "22-22-22-22-22-22", ... ] }
As a result, the json_decode process exceeded the PHP default 128M memory limit.
WHAT, over the limit? ! This JSON file is only 10M!
After cursing "Is there a bug in this function?", after careful consideration, I found that the problem lies in the array composed of MAC addresses. You must know that PHP arrays consume a lot of memory.
How much memory does PHP array use? You can do a simple experiment by putting 500,000 MAC addresses into the array and printing the memory usage:
$a = []; for ($i = 0; $i !== 500000; $i++) { $a[] = '11-11-11-11-11-11'; } echo memory_get_usage() . PHP_EOL;
If you write these MAC addresses in A file theoretically only occupies 9.6M of disk space, but the PHP array maintains the same information, but occupies 72.4M of memory.
Is there a way to solve the memory overrun during json_deocde? Of course, to be simple and crude, just increase the memory limit:
ini_set('memory_limit','1024M');
Although it is feasible, it will cause a problem, that is:
may be laughed at by engineers of other languages for PHP’s memory footprint .
Is there a smarter way to solve the memory overrun problem?
have. Because PHP arrays take up a lot of memory, we need to avoid json_decode from generating huge arrays when decoding. How to do it? This starts with the JSON encoding format. For example, you can modify a huge JSON array into a string:
{ "name": "MAC File", "date": "2017-11-08", "macList": "11-11-11-11-11-11,22-22-22-22-22-22,...", }
I converted macList from an array to a comma-separated string. This prevents json_decde from generating a huge array and replaces it with an extremely long string.
The amount of memory occupied by strings is much smaller than that of arrays. The 500,000 MAC addresses just now occupied only 9.7M of memory. After the modification, json_decode was parsed successfully and the parsing speed was faster.
Originally macList was an array, and the elements in it could be traversed through foreach. Now it is a string. How to traverse it?
It’s not difficult, you can use strtok:
$tok = strtok($macList, ','); while ($tok !== false) { $mac = $tok; $tok = strtok(','); }
The difficulty of traversal doesn’t increase much, right?
You may ask, this method can deal with simple JSON arrays. What if each element of a JSON array is a JSON object?
We can construct the string like this:
{ "list": '{"name":"obj1"}###{"name":"obj2"}###...' }
The string consists of small JSONs, separated by special marks
. During parsing, JSON objects are segmented according to special tags, and then parsed one by one using json_decode:$tok = strtok($objectList, '###'); // 按###切割 while ($tok !== false) { $objectStr = $tok; // 每切割出一个JSON对象就解码 $object = json_decode($objectStr, true); $tok = strtok('###'); }You can also create your own method of encoding/parsing this very long string. In short, the ultimate goal is Avoid json_decode generating very large arrays during the decoding process. Through this article, you should have a glimpse of PHP Array’s ability to eat memory. Replacing arrays in JSON with string representations can save a lot of memory. I also ran a comparative data for your reference: Parse 500,000 MACs:
Save MAC address method | Array Method | String method |
---|---|---|
JSON file size | 9.6M | 8.6M (each The element omits a pair of quotation marks) |
Average memory usage | 72.4M | 8.7M |
Average json_decode parsing time | 0.73s | 0.41s |
Save MAC address method | Array method | String method |
---|---|---|
JSON file size | 20M | 18M |
Average memory usage | 204.6M | 54.2M |
Average json_decode parsing time | 1.61s | 0.81s |
##Parsing 2 million MACs:
Save MAC address method | Array method | String method |
---|---|---|
JSON file size | 40M | 36M |
Average memory usage | 409.0M | 108.2M |
Average json_decode parsing time | 3.05s | 1.53s |
Recommended learning: php video tutorial
The above is the detailed content of A small change can save 70% of json_decode memory?. For more information, please follow other related articles on the PHP Chinese website!

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\ \;||\xc2\xa0)/","其他字符",$str)”语句。

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。


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

SublimeText3 Chinese version
Chinese version, very easy to use

Dreamweaver Mac version
Visual web development tools

WebStorm Mac version
Useful JavaScript development tools

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

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.
