本文整理汇总了PHP中logger::timer_stop方法的典型用法代码示例。如果您正苦于以下问题:PHP logger::timer_stop方法的具体用法?PHP logger::timer_stop怎么用?PHP logger::timer_stop使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类logger
的用法示例。
在下文中一共展示了logger::timer_stop方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: tep_redirect
function tep_redirect($url)
{
global $logger;
header('Location: ' . $url);
if (STORE_PAGE_PARSE_TIME == 'true') {
if (!is_object($logger)) {
$logger = new logger();
}
$logger->timer_stop();
}
exit;
}
示例2: tep_redirect
function tep_redirect($url)
{
global $logger;
if (strstr($url, "\n") != false || strstr($url, "\r") != false) {
tep_redirect(tep_href_link(FILENAME_DEFAULT, '', 'NONSSL', false));
}
header('Location: ' . $url);
if (STORE_PAGE_PARSE_TIME == 'true') {
if (!is_object($logger)) {
$logger = new logger();
}
$logger->timer_stop();
}
exit;
}
示例3: tep_redirect
function tep_redirect($url)
{
global $logger;
if (strstr($url, "\n") != false || strstr($url, "\r") != false) {
tep_redirect(tep_href_link('index.php', '', 'SSL', false));
}
if (strpos($url, '&') !== false) {
$url = str_replace('&', '&', $url);
}
header('Location: ' . $url);
if (STORE_PAGE_PARSE_TIME == 'true') {
if (!is_object($logger)) {
$logger = new logger();
}
$logger->timer_stop();
}
exit;
}
示例4: zen_redirect
function zen_redirect($url)
{
global $logger;
// clean up URL before executing it
while (strstr($url, '&&')) {
$url = str_replace('&&', '&', $url);
}
while (strstr($url, '&&')) {
$url = str_replace('&&', '&', $url);
}
// header locates should not have the & in the address it breaks things
while (strstr($url, '&')) {
$url = str_replace('&', '&', $url);
}
header('Location: ' . $url);
if (STORE_PAGE_PARSE_TIME == 'true') {
if (!is_object($logger)) {
$logger = new logger();
}
$logger->timer_stop();
}
exit;
}
示例5: logger
// license : This file is part of XOS-Shop.
//
// XOS-Shop is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published
// by the Free Software Foundation, either version 3 of the License,
// or (at your option) any later version.
//
// XOS-Shop is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with XOS-Shop. If not, see <http://www.gnu.org/licenses/>.
//------------------------------------------------------------------------------
// this file is based on:
// osCommerce, Open Source E-Commerce Solutions
// http://www.oscommerce.com
// Copyright (c) 2002 osCommerce
// filename: application_bottom.php
//
// Released under the GNU General Public License
////////////////////////////////////////////////////////////////////////////////
if (!(@(include DIR_FS_SMARTY . 'admin/templates/' . ADMIN_TPL . '/php/includes/application_bottom.php') == 'overwrite_all')) {
if (STORE_PAGE_PARSE_TIME == 'true') {
if (!is_object($logger)) {
$logger = new logger();
}
echo $logger->timer_stop(DISPLAY_PAGE_PARSE_TIME);
}
}
示例6: header
function oos_redirect_admin($url) {
global $logger;
header('Location: ' . $url);
if (STORE_PAGE_PARSE_TIME == '1') {
if (!is_object($logger)) $logger = new logger;
$logger->timer_stop();
}
exit;
}
示例7: xos_redirect
function xos_redirect($url)
{
global $logger;
if (strstr($url, "\n") != false || strstr($url, "\r") != false) {
xos_redirect(xos_href_link(FILENAME_DEFAULT));
}
$url = str_replace('&', '&', $url);
header_remove();
header('Location: ' . $url);
if (STORE_PAGE_PARSE_TIME == 'true') {
if (!is_object($logger)) {
$logger = new logger();
}
$logger->timer_stop();
}
exit;
}