Lines Matching refs:f1
29 function date_compare($f1,$f2) argument
31 return soap_datetime_to_timestamp($f1) == soap_datetime_to_timestamp($f2);
34 function hex_compare($f1, $f2) argument
36 return strcasecmp($f1,$f2) == 0;
39 function number_compare($f1, $f2) argument
42 preg_match('/.*?\.(.*)/',$f1,$m1);
47 $f1 = round($f1, $d);
49 return $f1 == $f2;
53 function boolean_compare($f1, $f2) argument
55 if (($f1 == 'true' || $f1 === TRUE || $f1 != 0) &&
57 if (($f1 == 'false' || $f1 === FALSE || $f1 == 0) &&