11 lines
121 B
Plaintext
11 lines
121 B
Plaintext
|
|
--TEST--
|
||
|
|
Bug #70487: pack('x') produces an error
|
||
|
|
--FILE--
|
||
|
|
<?php
|
||
|
|
|
||
|
|
var_dump(pack('x') === "\0");
|
||
|
|
|
||
|
|
?>
|
||
|
|
--EXPECT--
|
||
|
|
bool(true)
|