import zend standard tests
[hiphop-php.git] / hphp / test / zend / bad / ext-standard-strings / convert_uuencode_error.php
blob528b3d48e7eeadfb04eac5094e751eda2711e771
1 <?php
3 /* Prototype : string convert_uuencode ( string $data )
4 * Description: Uuencode a string
5 * Source code: ext/standard/uuencode.c
6 */
8 echo "*** Testing convert_uuencode() : error conditions ***\n";
10 echo "\n-- Testing chconvert_uuencoder() function with no arguments --\n";
11 var_dump( convert_uuencode() );
13 echo "\n-- Testing convert_uuencode() function with more than expected no. of arguments --\n";
14 $extra_arg = 10;
15 var_dump( convert_uuencode(72, $extra_arg) );
17 ?>
18 ===DONE===