Php recursive json class instance, php recursive json_PHP tutorial

Source: Internet
Author: User
Example of php recursive json class, and php recursive json. Php recursive json class example. php recursive json this article describes the implementation of php recursive json class. Share it with you for your reference. The specific implementation code is as follows: Copy the code as follows: php recursive json class instance, php recursive json

This article describes how to implement php recursive json classes. Share it with you for your reference.

The specific implementation code is as follows:

The code is as follows:

<? Php
/*
* @ Anthor: QD
* @ Time: 2013-09-27
*/
Class json {
Private $ Arr = array (); // input an array
// Constructor
Public function json ($ array)
{
If (! Is_array ($ array) return false;
$ This-> Arr = $ array;
}
// Parse the main function
Public function MainArr ()
{
$ Arr = $ this-> Arr;
If ($ this-> TypeArr ($ arr ))
{
$ Json = $ this-> NumArr ($ arr );
}
Else
{
$ Json = $ this-> IndexArr ($ arr );
}
Return $ json;
}
// Parse the index array
Public function IndexArr ($ arr)
{
$ Str = "";
Foreach ($ arr as $ k => $ value)
{
If (is_array ($ value ))
{
If ($ this-> TypeArr ($ value) {$ sun = $ this-> NumArr ($ value );}
Else {$ sun = $ this-> IndexArr ($ value );}
If (strpos ($ sun, "}") | strpos ($ sun, "]")
{
$ Str. = "". $ k. ":". $ sun .",";
}
Else
{
$ Str. = "". $ k. "": "". $ sun ."",";
}
}
Else
{
$ Str. = "". $ k. "": "". $ value ."",";
}
}
$ Str = "{". trim ($ str ,",")."}";
Return $ str;
}
// Parse the number array
Public function NumArr ($ arr)
{
$ Str = "";
Foreach ($ arr as $ value)
{
If (is_array ($ value ))
{
If ($ this-> TypeArr ($ value) {$ sun = $ this-> NumArr ($ value );}
Else {$ sun = $ this-> IndexArr ($ value );}
If (strpos ($ sun, "}") | strpos ($ sun, "]")
{
$ Str. = $ sun .",";
}
Else
{
$ Str. = "". $ sun ."",";
}
}
Else
{
$ Str. = "". $ value ."",";
}
}
$ Str = "[". trim ($ str, ","). "]";
Return $ str;
}
// Check whether an array is strictly indexed.
Public function TypeArr ($ arr)
{
If (array_values ($ arr) ===$ arr) return true;
Return false;
}
}
?>

I hope this article will help you with PHP programming.

Examples in this article describes how to implement php recursive json classes. Share it with you for your reference. The specific implementation code is as follows: the code is as follows...

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.