Remove windows encoding from `.php` files
[hiphop-php.git] / hphp / test / zend / good / tests / lang / operators / bitwiseNot_variationStr.php
blob72b17bc98cfb1f722858c6467dcdd484cc19899e
1 <?php
3 $strVals = array(
4 "0","65","-44", "1.2", "-7.7", "abc", "123abc", "123e5", "123e5xyz", " 123abc", "123 abc", "123abc ", "3.4a",
5 "a5.9"
6 );
9 foreach ($strVals as $strVal) {
10 echo "--- testing: '$strVal' ---\n";
11 var_dump(bin2hex(~$strVal));
15 ===DONE===