用户
 找回密码
 入住 CI 中国社区
搜索
楼主: jianzi
收起左侧

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

    [复制链接]
发表于 2012-3-31 06:43:21 | 显示全部楼层
这个不错啊,有没有完整的文档啊
发表于 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 ?>




一整页的代码啊
发表于 2012-4-9 12:15:35 | 显示全部楼层
强大
发表于 2012-6-7 01:02:12 | 显示全部楼层
谢谢楼主,真是太好了
发表于 2012-7-2 11:07:10 | 显示全部楼层
发表于 2012-7-5 14:45:42 | 显示全部楼层
发表于 2012-7-12 15:18:32 | 显示全部楼层
有调试好的么
发表于 2012-8-2 10:41:54 | 显示全部楼层
按网上的各种方法进行修改,还是会出现"The URI you submitted has disallowed characters."错误。有调试成功的不?分享下经验呗
发表于 2012-8-17 19:50:31 | 显示全部楼层
研究下,谢谢分享。
发表于 2012-8-18 22:09:25 CI中国手机版 | 显示全部楼层
松马情况
来自: iPhone客户端

本版积分规则