WC_Eval_Math::debugPrintCallingFunction() private WC 1.0
Prints the file name, function name, and line number which called your function (not this function, then one that called it to begin with)
{} Это метод класса: WC_Eval_Math{}
Хуков нет.
Возвращает
Null. Ничего.
Использование
$result = WC_Eval_Math::debugPrintCallingFunction();
Код WC_Eval_Math::debugPrintCallingFunction() WC Eval Math::debugPrintCallingFunction WC 5.0.0
private static function debugPrintCallingFunction() {
$file = 'n/a';
$func = 'n/a';
$line = 'n/a';
$debugTrace = debug_backtrace();
if ( isset( $debugTrace[1] ) ) {
$file = $debugTrace[1]['file'] ? $debugTrace[1]['file'] : 'n/a';
$line = $debugTrace[1]['line'] ? $debugTrace[1]['line'] : 'n/a';
}
if ( isset( $debugTrace[2] ) ) {
$func = $debugTrace[2]['function'] ? $debugTrace[2]['function'] : 'n/a';
}
echo "\n$file, $func, $line\n";
}