Remove windows encoding from `.php` files
[hiphop-php.git] / hphp / test / zend / good / tests / lang / operators / add_variationStr.php
blob0c5403923177399eec592e545d05a0da7f30aa93
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 );
8 error_reporting(E_ERROR);
10 foreach ($strVals as $strVal) {
11 foreach($strVals as $otherVal) {
12 echo "--- testing: '$strVal' + '$otherVal' ---\n";
13 var_dump($strVal+$otherVal);
19 ===DONE===