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


PHP Type::convertToPHPValue方法代碼示例

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


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

示例1: testArray

 public function testArray()
 {
     $photo = new Photo();
     $photo->setNom('wohoo');
     $serialized = $this->type->convertToDatabaseValue([$photo], $this->plateform);
     $unserialized = $this->type->convertToPHPValue($serialized, $this->plateform);
     $this->assertInstanceOf(Photo::class, $unserialized[0]);
     /** @var Photo $var */
     $var = $unserialized[0];
     $this->assertEquals('wohoo', $var->getNom());
 }
開發者ID:apflieger,項目名稱:zigotoo,代碼行數:11,代碼來源:PostGresqlArrayTypeTest.php

示例2: convertToPHPValue

 public function convertToPHPValue($value, AbstractPlatform $platform)
 {
     if ($value === null) {
         return null;
     }
     try {
         return parent::convertToPHPValue($value, $platform);
     } catch (ConversionException $e) {
         $val = \DateTime::createFromFormat('Y-m-d H:i:s.uO', $value);
         if (!$val) {
             throw ConversionException::conversionFailedFormat($value, $this->getName(), 'Y-m-d H:i:s.uO');
         }
         return $val;
     }
 }
開發者ID:sasedev,項目名稱:doctrine-dbal-pgsql-types,代碼行數:15,代碼來源:DateTimeTzType.php

示例3: testConversionToPHP

 /**
  * @dataProvider sqlValueProvider
  */
 public function testConversionToPHP($sql, $expected)
 {
     $value = $this->type->convertToPHPValue($sql, $this->platform);
     $this->assertEquals($expected, $value);
 }
開發者ID:ramunasd,項目名稱:doctrine-psql,代碼行數:8,代碼來源:AbstractTypeTest.php

示例4: testReturnValueIfUuidForPHPValue

 public function testReturnValueIfUuidForPHPValue()
 {
     $uuid = Uuid::uuid4();
     $this->assertSame($uuid, $this->type->convertToPHPValue($uuid, $this->platform));
 }
開發者ID:scr-be,項目名稱:arthur-doctrine-uuid-library,代碼行數:5,代碼來源:StringUuidTypeTest.php

示例5: value

 private function value(EntityManager $em, Type $type, $value)
 {
     $platform = $em->getConnection()->getDatabasePlatform();
     switch ($type->getName()) {
         case Type::BOOLEAN:
             return $type->convertToPHPValue($value, $platform);
             // json supports boolean values
         // json supports boolean values
         default:
             return $type->convertToDatabaseValue($value, $platform);
     }
 }
開發者ID:TadasJ,項目名稱:DataDogAuditBundle,代碼行數:12,代碼來源:AuditSubscriber.php


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