自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(13)
  • 资源 (1)
  • 收藏
  • 关注

转载 CodeIgniter源码分析之Loader.php

<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');/** * Loader Class * * Loader组件在CI里面也是一个很重要的组件,功能也比较明了。 * 如果已经阅读过Controller组件,会发现Controller组件的代码也只有十来行,但它却可以做很多事,一定程度上

2013-10-11 17:50:35 623

转载 CodeIgniter源码分析之Model.php

<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');/** * CodeIgniter Model Class */class CI_Model { /** * Constructor */ function __construct() { log_message('deb

2013-10-11 17:49:18 557

转载 CodeIgniter源码分析之Controller.php

<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');/** * CodeIgniter Application Controller Class */class CI_Controller { private static $instance; /** * Constructor

2013-10-11 17:47:41 519

转载 CodeIgniter源码分析之Output.php

<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');// ------------------------------------------------------------------------/** * Output Class * * Output组件其实有很多有用的方法,

2013-10-11 17:46:53 710

转载 CodeIgniter源码分析之Hook.php

<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');// ------------------------------------------------------------------------/** * CodeIgniter Hooks Class */class CI_Hoo

2013-10-11 17:45:55 550

转载 CodeIgniter源码分析之Config.php

<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');// ------------------------------------------------------------------------/** * CodeIgniter Config Class */class CI_C

2013-10-11 17:45:17 1011

转载 CodeIgniter源码分析之Benchmark.php

<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');// ------------------------------------------------------------------------/** * CodeIgniter Benchmark Class */class CI

2013-10-11 17:44:30 837

转载 CodeIgniter源码分析之Exception.php

<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');// ------------------------------------------------------------------------/** * Exceptions Class */class CI_Exceptions

2013-10-11 17:43:37 550

转载 CodeIgniter源码分析之Router.php

<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');// ------------------------------------------------------------------------/** * Router Class */class CI_Router { /*

2013-10-11 17:42:46 757

转载 CodeIgniter源码分析之URI.php

<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');// ------------------------------------------------------------------------/** * URI Class */class CI_URI { /** * L

2013-10-11 17:41:28 598

转载 CodeIgniter源码分析之Common.php

<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');// ------------------------------------------------------------------------/** * Common Functions *//** * 为什么还要定义这些全

2013-10-11 17:40:30 600

转载 CodeIgniter源码分析之CodeIgniter.php

<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');/** * 上面: * 这个BASEPATH,就是在入口文件(index.php)里面定义的那个BASEPATH~ * 如果没有定义BASEPATH,那么直接退出,下面程序都不执行。其实除了入口文件index.php开头没有这句话之外,所有文

2013-10-11 17:39:14 702

转载 CodeIgniter源码分析之index.php

<?php/* *--------------------------------------------------------------- * APPLICATION ENVIRONMENT *--------------------------------------------------------------- * * * //配置项目运行的环境,该配置会影响错误报告

2013-10-11 17:36:47 771

PHP SMTP发送类

PHP SMTP发送类 把自己框架里的邮件发送类分享出来,希望对大家有帮助,同时做了一个小例子,方便大家使用。 QQ邮箱不让自己SMTP发给自己,所以测试时请留意这个问题。

2013-10-16

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除