收藏本站 Archiver
    请 后使用快捷导航
    没有账号?入住 CI 中国社区
    楼主: jianzi

    [程序 App] [1.5.4]一个完整的 CI 例子: facebook 克隆

    [复制链接]
    81
    发表于 2012年3月31日 06:43:21 | 只看该作者
    这个不错啊,有没有完整的文档啊
    82
    发表于 2012年4月8日 22:26:07 | 只看该作者
    // -------------------------------------------------------------------- /** * Set a benchmark marker * * Multiple calls to this function can be made so that several * execution points can be timed * * @access public * @param string $name name of the marker * @return void */ function mark($name) { $this->marker[$name] = microtime(); } // -------------------------------------------------------------------- /** * Calculates the time difference between two marked points. * * If the first parameter is empty this function instead returns the * {elapsed_time} pseudo-variable. This permits the full system * execution time to be shown in a template. The output class will * swap the real value for this variable. * * @access public * @param string a particular marked point * @param string a particular marked point * @param integer the number of decimal places * @return mixed */ function elapsed_time($point1 = '', $point2 = '', $decimals = 4) { if ($point1 == '') { return '{elapsed_time}'; } if ( ! isset($this->marker[$point1])) { return ''; } if ( ! isset($this->marker[$point2])) { $this->marker[$point2] = microtime(); } list($sm, $ss) = explode(' ', $this->marker[$point1]); list($em, $es) = explode(' ', $this->marker[$point2]); return number_format(($em + $es) - ($sm + $ss), $decimals); } // -------------------------------------------------------------------- /** * Memory Usage * * This function returns the {memory_usage} pseudo-variable. * This permits it to be put it anywhere in a template * without the memory being calculated until the end. * The output class will swap the real value for this variable. * * @access public * @return string */ function memory_usage() { return '{memory_usage}'; } } // END CI_Benchmark class ?>




    一整页的代码啊
    83
    发表于 2012年4月9日 12:15:35 | 只看该作者
    强大
    84
    发表于 2012年6月7日 01:02:12 | 只看该作者
    谢谢楼主,真是太好了
    85
    发表于 2012年7月2日 11:07:10 | 只看该作者
    86
    发表于 2012年7月5日 14:45:42 | 只看该作者
    87
    发表于 2012年7月12日 15:18:32 | 只看该作者
    有调试好的么
    88
    发表于 2012年8月2日 10:41:54 | 只看该作者
    按网上的各种方法进行修改,还是会出现"The URI you submitted has disallowed characters."错误。有调试成功的不?分享下经验呗
    89
    发表于 2012年8月17日 19:50:31 | 只看该作者
    研究下,谢谢分享。
    90
    发表于 2012年8月18日 22:09:25 CI中国手机版 | 只看该作者
    松马情况
    来自: iPhone客户端
    下一页 »
    1 ... 3 4 5 6 7 8 910 11 12 下一页
    返回列表
    您需要登录后才可以回帖 登录 | 入住 CI 中国社区

    本版积分规则

    AltStyle によって変換されたページ (->オリジナル) /