add bitset operations and tests
[hiphop-php.git] / hphp / test / slow / chr-invalid-type.php
blob5240631ef4d72bb50e2c3d484fe06ec9726727bd
1 <?php
3 $inputs = [
4 -1, 0, 1, 2, 128, 255,
5 "0string", "1string", "2",
6 [], [1], [1,2],
7 new stdClass,
8 new SimpleXMLElement("<foo />"),
9 new SimpleXMLElement("<foo><bar/></foo>"),
10 STDIN, STDOUT, STDERR,
13 foreach ($inputs as $v) {
14 var_dump(bin2hex(chr($v)));