function fp_debug_ct

6.x misc.inc fp_debug_ct($debug_val = "", $var = "")
4.x misc.inc fp_debug_ct($debug_val = "", $var = "")
5.x misc.inc fp_debug_ct($debug_val = "", $var = "")

Shortcut to fp_debug_current_time_millis()

Parameters

unknown_type $debug_val:

unknown_type $var:

Return value

unknown

See also

fp_debug_current_time_millis()

1 call to fp_debug_ct()
fpmct in includes/misc.inc
Convenience function, will use fp_debug_ct() to display a message, and the number of miliseconds since its last call.

File

includes/misc.inc, line 2196
This file contains misc functions for FlightPath

Code

function fp_debug_ct($debug_val = "", $var = "") 
 { // Shortcut to the other function.
  return fp_debug_current_time_millis($debug_val, false, $var);
}