Lines Matching refs:f2
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
43 preg_match('/.*?\.(.*)/',$f2,$m2);
48 $f2 = round($f2, $d);
49 return $f1 == $f2;
53 function boolean_compare($f1, $f2) argument
56 ($f2 == 'true' || $f2 === TRUE || $f2 != 0)) return TRUE;
58 ($f2 == 'false' || $f2 === FALSE || $f2 == 0)) return TRUE;