當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。