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


PHP FormatJson::parse方法代码示例

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


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

示例1: getData

 /**
  * Decodes the JSON string.
  *
  * Note that this parses it without casting objects to associative arrays.
  * Objects and arrays are kept as distinguishable types in the PHP values.
  *
  * @return Status
  */
 public function getData()
 {
     if ($this->jsonParse === null) {
         $this->jsonParse = FormatJson::parse($this->getNativeData());
     }
     return $this->jsonParse;
 }
开发者ID:MediaWiki-stable,项目名称:1.26.1,代码行数:15,代码来源:JsonContent.php

示例2: jsonDecode

 public function jsonDecode($s, $flags)
 {
     $this->checkType('mw.text.jsonDecode', 1, $s, 'string');
     $this->checkTypeOptional('mw.text.jsonDecode', 2, $flags, 'number', 0);
     $flags = (int) $flags;
     $opts = FormatJson::FORCE_ASSOC;
     if ($flags & self::JSON_TRY_FIXING) {
         $opts |= FormatJson::TRY_FIXING;
     }
     $status = FormatJson::parse($s, $opts);
     if (!$status->isOk()) {
         throw new Scribunto_LuaError('mw.text.jsonDecode: ' . $status->getMessage()->text());
     }
     $val = $status->getValue();
     if (!($flags & self::JSON_PRESERVE_KEYS) && is_array($val)) {
         $val = self::reindexArrays($val, false);
     }
     return array($val);
 }
开发者ID:sammykumar,项目名称:TheVRForums,代码行数:19,代码来源:TextLibrary.php

示例3: testParseErrors

 /**
  * @dataProvider provideParseErrors
  * @param mixed $value
  */
 public function testParseErrors($value)
 {
     $st = FormatJson::parse($value);
     $this->assertType('Status', $st);
     $this->assertFalse($st->isOK());
 }
开发者ID:rploaiza,项目名称:dbpedia-latinoamerica,代码行数:10,代码来源:FormatJsonTest.php

示例4: testParseStripComments

 /**
  * @covers FormatJson::parse
  * @covers FormatJson::stripComments
  * @dataProvider provideParseStripComments
  * @param string $json
  * @param mixed $expect
  */
 public function testParseStripComments($json, $expect)
 {
     $st = FormatJson::parse($json, FormatJson::STRIP_COMMENTS);
     $this->assertType('Status', $st);
     $this->assertTrue($st->isGood());
     $this->assertEquals($expect, $st->getValue());
 }
开发者ID:eliagbayani,项目名称:LiteratureEditor,代码行数:14,代码来源:FormatJsonTest.php

示例5: getReport

 /**
  * Get the report from post body and turn into associative array.
  *
  * @return Array
  */
 private function getReport()
 {
     $postBody = $this->getRequest()->getRawInput();
     if (strlen($postBody) > self::MAX_POST_SIZE) {
         // paranoia, already checked content-length earlier.
         $this->error('toobig', __METHOD__);
     }
     $status = FormatJson::parse($postBody, FormatJson::FORCE_ASSOC);
     if (!$status->isGood()) {
         list($code, ) = $this->getErrorFromStatus($status);
         $this->error($code, __METHOD__);
     }
     $report = $status->getValue();
     if (!isset($report['csp-report'])) {
         $this->error('missingkey', __METHOD__);
     }
     return $report['csp-report'];
 }
开发者ID:paladox,项目名称:mediawiki,代码行数:23,代码来源:ApiCSPReport.php

示例6: toArr

 private function toArr($message, $params, $dictByDefault = false)
 {
     if (is_string($params) && $params) {
         $p = $params;
         if ($p[0] !== '[' && $p[0] !== '{') {
             $p = $dictByDefault ? '{' . $params . '}' : "[{$params}]";
         }
         $st = FormatJson::parse($p, FormatJson::FORCE_ASSOC);
         $this->assertTrue($st->isOK(), "{$message}: invalid JSON value {$params}");
         $params = $st->getValue();
     }
     return $params;
 }
开发者ID:joakin,项目名称:mediawiki-extensions-Gather,代码行数:13,代码来源:GatherTest.php


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