Lines Matching refs:values
2 Test strncasecmp() function : usage variations - unexpected values for 'str2'
12 echo "*** Testing strncasecmp() function: with unexpected values for 'str2' ***\n";
28 /* array with different values */
29 $values = array (
30 /* integer values */
36 /* float values */
43 /* hexadecimal values */
47 /* octal values */
52 /* array values */
59 /* boolean values */
88 for($index = 0; $index < count($values); $index ++) {
90 $str1 = $values[$index];
91 $str2 = $values[$index];
92 $len = strlen($values[$index]) + 1;
102 *** Testing strncasecmp() function: with unexpected values for 'str2' ***