Lines Matching refs:intval
2 Test intval() function
9 echo "*** Testing intval() with valid integer values ***\n";
32 /* loop to check that intval() recognizes different
37 var_dump( intval($value) );
43 var_dump( intval($value, 10) );
49 var_dump( intval($value, 16) );
54 var_dump( intval($value, 8) );
57 echo "\n*** Testing intval() on non integer types ***\n";
140 …intval() on non integer types, expected output: integer value in decimal notation for valid intege…
142 var_dump( intval($type) );
150 *** Testing intval() with valid integer values ***
232 *** Testing intval() on non integer types ***