本文整理匯總了PHP中YDDebugUtil::stackTrace方法的典型用法代碼示例。如果您正苦於以下問題:PHP YDDebugUtil::stackTrace方法的具體用法?PHP YDDebugUtil::stackTrace怎麽用?PHP YDDebugUtil::stackTrace使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類YDDebugUtil
的用法示例。
在下文中一共展示了YDDebugUtil::stackTrace方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: actionDefault
function actionDefault()
{
// Get the debug URI
if (strpos(YD_SELF_URI, 'YD_DEBUG=1') === false) {
echo 'You need to run in <a href="' . YD_SELF_SCRIPT . '?YD_DEBUG=1">debugging mode</a> to see something.';
} else {
echo 'If you go <a href="' . YD_SELF_SCRIPT . '">out of the debugging mode</a>, the stack trace will be hidden.';
}
// Get the file object for the current file
YDDebugUtil::stackTrace();
}