mirror of
https://github.com/php/php-src.git
synced 2026-03-26 09:12:14 +01:00
11 lines
121 B
PHP
11 lines
121 B
PHP
--TEST--
|
|
Bug #70487: pack('x') produces an error
|
|
--FILE--
|
|
<?php
|
|
|
|
var_dump(pack('x') === "\0");
|
|
|
|
?>
|
|
--EXPECT--
|
|
bool(true)
|