当前位置: 首页>>代码示例>>PHP>>正文


PHP AO::setIsDeveloperMode方法代码示例

本文整理汇总了PHP中AO::setIsDeveloperMode方法的典型用法代码示例。如果您正苦于以下问题:PHP AO::setIsDeveloperMode方法的具体用法?PHP AO::setIsDeveloperMode怎么用?PHP AO::setIsDeveloperMode使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在AO的用法示例。


在下文中一共展示了AO::setIsDeveloperMode方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: header

   echo  '<div style="font:12px/1.35em arial, helvetica, sans-serif;"><div style="margin:0 0 25px 0; border-bottom:1px solid #ccc;"><h3 style="margin:0; font-size:1.7em; font-weight:normal; text-transform:none; text-align:left; color:#2f2f2f;">Whoops, it looks like you have an invalid PHP version.</h3></div><p>Magento supports PHP 5.2.0 or newer. <a href="http://www.magentocommerce.com/install" target="">Find out</a> how to install</a> Magento using PHP-CGI as a work-around.</p></div>';
   exit;
}
*/
$AOFilename = 'app/AO.php';
if (!file_exists($AOFilename)) {
    if (is_dir('downloader')) {
        header("Location: downloader");
    } else {
        echo $AOFilename . " was not found";
    }
    exit;
}
require_once $AOFilename;
#Varien_Profiler::enable();
AO::setIsDeveloperMode(true);
#ini_set('display_errors', 1);
/*
register_tick_function('tick_profiler');
declare(ticks=2);
*/
umask(0);
AO::run();
if (AO::getIsDeveloperMode(true)) {
    $end = microtime(1);
    if (!strstr($_SERVER['PHP_SELF'], 'ajax')) {
        echo '<div style="position:absolute;top:0px;background-color:#cfc">';
        echo sprintf('%.2f', ($end - $start) * 1000) . 'ms';
        echo ' - ' . number_format(memory_get_peak_usage() / 1024) . ' kb';
        echo '</div>';
    }
开发者ID:ronseigel,项目名称:agent-ohm,代码行数:31,代码来源:index.php


注:本文中的AO::setIsDeveloperMode方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。