1--TEST-- 2Bug #70487: pack('x') produces an error 3--FILE-- 4<?php 5 6var_dump(pack('x') === "\0"); 7 8?> 9--EXPECT-- 10bool(true) 11