import zend standard tests
[hiphop-php.git] / hphp / test / zend / good / ext-standard-math / decoct_basic.php
blob6adf46d3b131fcf642093bce27940599973980c8
1 <?php
2 $values = array(10,
3 3950.5,
4 3.9505e3,
5 039,
6 0x5F,
7 "10",
8 "3950.5",
9 "3.9505e3",
10 "039",
11 "0x5F",
12 true,
13 false,
14 null,
15 );
17 for ($i = 0; $i < count($values); $i++) {
18 $res = decoct($values[$i]);
19 var_dump($res);