當前位置: 首頁>>代碼示例>>PHP>>正文


PHP NormalizerInterface::denormalize方法代碼示例

本文整理匯總了PHP中Symfony\Component\Serializer\Normalizer\NormalizerInterface::denormalize方法的典型用法代碼示例。如果您正苦於以下問題:PHP NormalizerInterface::denormalize方法的具體用法?PHP NormalizerInterface::denormalize怎麽用?PHP NormalizerInterface::denormalize使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Symfony\Component\Serializer\Normalizer\NormalizerInterface的用法示例。


在下文中一共展示了NormalizerInterface::denormalize方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: testDenormalizationWithType

 public function testDenormalizationWithType()
 {
     $dummy = $this->getDummy();
     $this->normalizer->addType('dummy', TypehintNormalizerClassDummy::class);
     $this->normalizer->addType('subdummy', TypehintNormalizerSubclassDummy::class);
     $expected = $dummy;
     $normalized = $this->normalizer->normalize($dummy);
     $this->assertTrue($this->normalizer->supportsDenormalization($normalized, RecursiveNormalizerClassDummy::class));
     $actual = $this->normalizer->denormalize($normalized, TypehintNormalizerClassDummy::class);
     $this->assertEquals($expected, $actual);
 }
開發者ID:mihai-stancu,項目名稱:serializer,代碼行數:11,代碼來源:TypehintNormalizerTest.php

示例2: denormalize

 /**
  * @param mixed $data
  * @param string $class
  * @param mixed $format
  * @param array $context
  * @return AbstractTypedAddress
  */
 public function denormalize($data, $class, $format = null, array $context = array())
 {
     /** @var AbstractTypedAddress $result */
     $result = $this->addressNormalizer->denormalize($data, $class, $format, $context);
     if (!empty($data['types']) && is_array($data['types'])) {
         $types = $this->serializer->denormalize($data['types'], static::TYPES_TYPE, $format, $context);
         if ($types) {
             foreach ($types as $type) {
                 $result->addType($type);
             }
         }
     }
     return $result;
 }
開發者ID:ashutosh-srijan,項目名稱:findit_akeneo,代碼行數:21,代碼來源:TypedAddressNormalizer.php

示例3: denormalize

 /**
  * Returns collection of denormalized data
  *
  * @param mixed $data
  * @param string $class
  * @param mixed $format
  * @param array $context
  * @return ArrayCollection
  */
 public function denormalize($data, $class, $format = null, array $context = array())
 {
     if (!is_array($data)) {
         return new ArrayCollection();
     }
     $itemType = $this->getItemType($class);
     if (!$itemType) {
         return new ArrayCollection($data);
     }
     $result = new ArrayCollection();
     foreach ($data as $item) {
         $result->add($this->serializer->denormalize($item, $itemType, $format, $context));
     }
     return $result;
 }
開發者ID:ashutosh-srijan,項目名稱:findit_akeneo,代碼行數:24,代碼來源:CollectionNormalizer.php

示例4: denormalize

 /**
  * {@inheritdoc}
  */
 public function denormalize($data, $class, $format = null, array $context = [])
 {
     if (isset($data['#type'])) {
         $type = $data['#type'];
         unset($data['#type']);
         $data = $this->denormalize($data, $type, $format, $context);
         $data = $this->objectNormalizer->denormalize($data, $type, $format, $context);
         return $data;
     }
     if (is_array($data) || $data instanceof \Traversable) {
         foreach ($data as $key => $value) {
             $data[$key] = $this->serializer->denormalize($value, $class, $format, $context);
         }
     }
     return $data;
 }
開發者ID:dunglas,項目名稱:doctrine-json-odm,代碼行數:19,代碼來源:ObjectNormalizer.php

示例5: handleUpdateRequest

 /**
  * {@inheritdoc}
  */
 public function handleUpdateRequest(Request $request, $identifier)
 {
     $parameters = $request->request->all();
     $resource = $this->getResourceById($identifier);
     $className = ClassUtils::getRealClass(get_class($resource));
     $resource = $this->serializer->denormalize($parameters, $className, self::RESPONSE_FORMAT, ['resource' => $resource]);
     $data = $this->serializer->serialize($resource, self::RESPONSE_FORMAT, ['group' => $this->getResourceType()]);
     $this->manager->updateResource($resource);
     return new Response($data);
 }
開發者ID:wellcommerce,項目名稱:wellcommerce,代碼行數:13,代碼來源:RequestHandler.php


注:本文中的Symfony\Component\Serializer\Normalizer\NormalizerInterface::denormalize方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。