import zend standard tests
[hiphop-php.git] / hphp / test / zend / good / ext-standard-strings / bin2hex.php
blob216c84dd93df40672f948c5d3729536788842103
1 <?php
2 $s = '';
3 for($i=0; $i<256; $i++) {
4 $s .= chr($i);
6 echo bin2hex($s)."\n";
7 echo bin2hex("abc")."\n";
8 ?>