当前位置: 首页>>代码示例>>PHP>>正文


PHP Json::parse方法代码示例

本文整理汇总了PHP中Json::parse方法的典型用法代码示例。如果您正苦于以下问题:PHP Json::parse方法的具体用法?PHP Json::parse怎么用?PHP Json::parse使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Json的用法示例。


在下文中一共展示了Json::parse方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: parseMustReturnArray

 /**
  * @test
  */
 public function parseMustReturnArray()
 {
     $expected = ['some' => 1, 'valid' => false, 'payloads' => [1, "10", 1.1, null, true]];
     $json = new Json();
     $parsed = $json->parse(json_encode($expected));
     $this->assertEquals($expected, $parsed);
 }
开发者ID:Leko,项目名称:permitter,代码行数:10,代码来源:JsonTest.php

示例2: test_parse_returnsSelf_ifOutputIsValid

 /**
  * parse() should return true if $output is valid json
  */
 public function test_parse_returnsSelf_ifOutputIsValid()
 {
     $output = '{"foo":"bar"}';
     $response = new Json();
     $this->assertTrue($response->parse($output));
     $this->assertEquals(['foo' => 'bar'], $response->getData());
     return;
 }
开发者ID:jstewmc,项目名称:api,代码行数:11,代码来源:JsonTest.php

示例3: testParse

 public function testParse()
 {
     $expected = [['name' => 'magento/module-module1', 'dependencies' => [['module' => 'magento/module-module2', 'type' => 'hard'], ['module' => 'magento/module-backend', 'type' => 'soft']]], ['name' => 'magento/module-module2', 'dependencies' => [['module' => 'magento/module-module3', 'type' => 'hard']]]];
     $actual = $this->parser->parse(['files_for_parse' => [$this->fixtureDir . 'composer1.json', $this->fixtureDir . 'composer2.json']]);
     $this->assertEquals($expected, $actual);
 }
开发者ID:andrewhowdencom,项目名称:m2onk8s,代码行数:6,代码来源:JsonTest.php

示例4: parseDepthError

 /**
  * @test
  * @expectedException \Json\Exception\Decoding
  * @expectedExceptionMessage JSON decode failed: Maximum stack depth exceeded (1)
  */
 public function parseDepthError()
 {
     if (version_compare(PHP_VERSION, '5.3.0', '<')) {
         $this->markTestSkipped('PHP Version < 5.3.0');
     }
     // Default max-depth=512 ( x > 512 -> JSON_ERROR_DEPTH )
     $json = '[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]';
     $result = Json::parse($json);
 }
开发者ID:youhey,项目名称:Json,代码行数:14,代码来源:DecodingTest.php

示例5: Json

                        array_push($stack, $v);
                    }
                    break;
                case 'Object':
                    $obj = [];
                    for ($i = count($tokens) - 4; $i > 0; $i -= 4) {
                        $k = $this->parseString($tokens[$i][1]);
                        $v = array_pop($stack);
                        $obj[$k] = $v;
                    }
                    array_push($stack, (object) array_reverse($obj, true));
                    break;
                case 'Array':
                    $arr = [];
                    for ($i = count($tokens) - 2; $i > 0; $i -= 2) {
                        $v = array_pop($stack);
                        $arr[] = $v;
                    }
                    array_push($stack, array_reverse($arr));
                    break;
            }
        });
        return $stack[0];
    }
}
$j = new Json();
var_dump($j->parse('{"abc":123,"B":["a","b","c"],"c":"\\u795e\\u4ed9"}'));
var_dump($j->parse('{"a":{"V":1},"b":{},"c":[],"d":true}'));
var_dump($j->parse('"abcde"'));
var_dump($j->parse('null'));
var_dump($j->parse('false'));
开发者ID:nobody1986,项目名称:phpcc,代码行数:31,代码来源:json.php


注:本文中的Json::parse方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。