2014年7月7日 15:23:05ci的视图功能很棒,比如一个网页有四个部分组成,对应4个文件:header.php, sider.php, maincontent.php, footer .php不用PHP的include,可以1 this->load->view('header.php');2...
分类:
其他好文 时间:
2014-07-09 22:35:17
阅读次数:
239
一.Android的系统架构1. 应用程序 同Android系统一起发布的核心应用程序,如email 客户端,SMS 短消息程序,日历,地图,浏览器,联系人管理程序等。 这些应用程序都是用java编写的。2. 应用程序框架 开发者可以用它开发应用,其中包括:? 丰富而又可扩展的视图(Views):可...
分类:
移动开发 时间:
2014-07-09 18:05:54
阅读次数:
197
Output Control 函数可以让你自由控制脚本中数据的输出。它非常地有用,特别是对于:当你想在数据已经输出后,再输出文件头的情况。输出控制函数不对使用 header() 或 setcookie(), 发送的文件头信息产生影响,只对那些类似于 echo() 和 PHP 代码的数据块有作用。我们...
分类:
Web程序 时间:
2014-07-09 17:45:21
阅读次数:
272
在"安装Git"一节中,我们已经配置了user.name和user.email,实际上,Git还有很多可配置项。比如,让Git显示颜色,会让命令输出看起来更醒目:$ git config --global color.ui true这样,Git会适当地显示不同的颜色,比如git status命令:文...
分类:
其他好文 时间:
2014-07-08 22:20:13
阅读次数:
243
1. git send-email is included in an individual package, named "git-email":$ sudo apt-get install git-email2. Configure the SMTP server info after the ...
分类:
系统相关 时间:
2014-07-08 14:49:13
阅读次数:
413
thinkphp 清除 X-Powered-By: ThinkPHP
找到文件,
ThinkPHP/Lib/Think/Core/View.class.php。
搜索到一下代码屏蔽即可。
header('X-Powered-By:ThinkPHP');
PHP清除X-Powered-By: PHP/5.2.4
设置php.ini ,expose_php ...
分类:
Web程序 时间:
2014-07-08 13:22:27
阅读次数:
236
extJs数据模型之Model博客分类:ExtJs1 model的创建Java代码 //我们利用Ext.define来创建我们的模型类 //DB table person(name,age,email) Ext.define("person",{ extend:"Ext.data.Model"...
分类:
其他好文 时间:
2014-07-08 11:27:53
阅读次数:
210
1、使用nodemailer模块var nodemailer = require("nodemailer");2、代码如下exports.send_email = function(req,res) { //发件人信息设置 var smtpTransport = nodemailer.c...
分类:
Web程序 时间:
2014-07-08 00:39:18
阅读次数:
366
使 UITableViewStylePlain Style 的TableView header 不浮动,像Group Style 那样固定,跟随Tableview 滚动,而不会停在顶端。...
分类:
其他好文 时间:
2014-07-06 09:00:06
阅读次数:
154
环境:VS2010
微软官方解释:
Visual C++ Concepts: Building a C/C++ ProgramCompiler Warning (level 1) C4627Error Message
”: skipped when looking for precompiled header use
While searching for the location w...
分类:
其他好文 时间:
2014-07-06 08:22:37
阅读次数:
169