import zend standard tests
[hiphop-php.git] / hphp / test / zend / bad / ext-standard-math / octdec_error.php
blob06d6cb8ff9751dd87e29e53cfb6774ca7351592f
1 <?php
2 /* Prototype : number octdec ( string $octal_string )
3 * Description: Returns the decimal equivalent of the octal number represented by the octal_string argument.
4 * Source code: ext/standard/math.c
5 */
7 echo "*** Testing octdec() : error conditions ***\n";
9 // get a class
10 class classA
14 echo "\n-- Incorrect number of arguments --\n";
15 octdec();
16 octdec('0123567',true);
18 echo "\n-- Incorrect input --\n";
19 octdec(new classA());