%PDF- %PDF-
Direktori : /var/www/html/diaspora/api/vendor/doctrine/dbal/lib/Doctrine/DBAL/Types/ |
Current File : /var/www/html/diaspora/api/vendor/doctrine/dbal/lib/Doctrine/DBAL/Types/BinaryType.php |
<?php namespace Doctrine\DBAL\Types; use Doctrine\DBAL\ParameterType; use Doctrine\DBAL\Platforms\AbstractPlatform; use function fopen; use function fseek; use function fwrite; use function is_resource; use function is_string; /** * Type that maps ab SQL BINARY/VARBINARY to a PHP resource stream. */ class BinaryType extends Type { /** * {@inheritdoc} */ public function getSQLDeclaration(array $fieldDeclaration, AbstractPlatform $platform) { return $platform->getBinaryTypeDeclarationSQL($fieldDeclaration); } /** * {@inheritdoc} */ public function convertToPHPValue($value, AbstractPlatform $platform) { if ($value === null) { return null; } if (is_string($value)) { $fp = fopen('php://temp', 'rb+'); fwrite($fp, $value); fseek($fp, 0); $value = $fp; } if (! is_resource($value)) { throw ConversionException::conversionFailed($value, self::BINARY); } return $value; } /** * {@inheritdoc} */ public function getName() { return Type::BINARY; } /** * {@inheritdoc} */ public function getBindingType() { return ParameterType::BINARY; } }