Lines Matching refs:values
7 echo "*** Testing strrpos() function with unexpected values for haystack and needle ***\n";
23 // array with different values
24 $values = array (
26 // integer values
32 // float values
39 // array values
46 // boolean values
59 // null values
76 for($index = 0; $index < count($values); $index ++) {
78 $haystack = $values[$index];
80 var_dump( strrpos($values[$index], $values[$index]) );
86 var_dump( strrpos($values[$index], $values[$index], 1) );
96 *** Testing strrpos() function with unexpected values for haystack and needle ***