Lines Matching refs:values
2 Test ucwords() function : usage variations - unexpected input values
11 * Test ucwords() by passing different values including scalar and non scalar values
30 // array with different values
31 $values = array (
33 // integer values
39 // hex values
45 // octal values
49 // float values
56 // array values
63 // boolean values
97 // when $str argument is supplied with different values
98 echo "\n--- Testing ucwords() by supplying different values for 'str' argument ---\n";
100 for($index = 0; $index < count($values); $index ++) {
102 $str = $values [$index];
116 --- Testing ucwords() by supplying different values for 'str' argument ---