composer package updates
[openemr.git] / vendor / symfony / polyfill-php54 / Php54.php
blob5fe232c353de6bc97b962bf0bba43f4a283b3794
1 <?php
3 /*
4 * This file is part of the Symfony package.
6 * (c) Fabien Potencier <fabien@symfony.com>
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
12 namespace Symfony\Polyfill\Php54;
14 /**
15 * @author Nicolas Grekas <p@tchwork.com>
17 * @internal
19 final class Php54
21 public static function hex2bin($data)
23 $len = \strlen($data);
25 if (null === $len) {
26 return;
28 if ($len % 2) {
29 trigger_error('hex2bin(): Hexadecimal input string must have an even length', E_USER_WARNING);
31 return false;
34 return pack('H*', $data);