码迷,mamicode.com
首页 >  
搜索关键字:phalcon    ( 175个结果
ubuntu linux 下 Phalcon 开发工具安装
1. 装好phalcon php扩展 2. 下载phalcon-devtools:https://github.com/phalcon/phalcon-devtools 或者git克隆: git clone git://github.com/phalcon-devtools.git 3.安装: cd phalcon-devtools ./phalcon.sh 4. 建立快捷方式 ln...
分类:系统相关   时间:2015-01-13 21:36:43    阅读次数:353
PHP 框架Phalcon 问题记录
1.问题:用官方的例子,首页可以正常打开,但比如说 /signup,contact/index 这样的连接都是出现404 file not find,这样的错误。以上问题在Apache web server是好的。解决方法:URL重写导致。直接访问localhost/index.php?_url=/...
分类:Web程序   时间:2014-12-22 22:33:47    阅读次数:173
[label][phalcon] How to install Phalcon extension for Zend Server 6.3.0 for windows 7 64bit
At first , you should download Phalcon DLL file.You can download from this link under.http://static.phalconphp.com/files/phalcon_x86_VC9_php5.3.9_1.3....
分类:Windows程序   时间:2014-11-18 11:45:27    阅读次数:549
Phalcon获取最后插入ID lastInsertId
<?php $model=newmodel(); if($model->create($data)){ $insertId=$model->getWriteConnection()->lastInsertId($model->getSource()); } ?>是的没错,就是如此的简单!
分类:其他好文   时间:2014-11-14 15:49:59    阅读次数:960
linux下安装 phalcon
phalcon是一个非常快的php框架使用的c语言编写,编译成php模块提供使用安装了phalcon之后,搭建mvc框架特别简单安装phalcon的时候注意检查下path环境变量中是不是有phpcd~/git gitclone--depth=1git://github.com/phalcon/cphalcon.git cdcphalcon/build ./install extension=p..
分类:系统相关   时间:2014-11-05 00:38:25    阅读次数:562
理解PHP 依赖注入|Laravel IoC容器
看Laravel的IoC容器文档只是介绍实例,但是没有说原理,之前用MVC框架都没有在意这个概念,无意中在phalcon的文档中看到这个详细的介绍,感觉豁然开朗,复制粘贴过来,主要是好久没有写东西了,现在确实很懒变得!首先,我们假设,我们要开发一个组件命名为SomeComponent。这个组件中现在...
分类:Web程序   时间:2014-11-02 16:14:41    阅读次数:400
phalcon设置数据库表名getSource方法
<?php use\Phalcon\Mvc\Model\Message; classAreaextends\Phalcon\Mvc\Model{ //设置返回的表名 publicfunctiongetSource(){ return"jz_area"; } } ?>
分类:数据库   时间:2014-10-20 02:16:03    阅读次数:246
Phalcon之微应用(Micro Applications)
此文中主要讲解了phalcon中如何使用微应用来开发小微的应用程序...
分类:移动开发   时间:2014-10-17 13:52:44    阅读次数:770
Phalcon 之命令行应用(Command Line Applications)
Phalcon中如何实现cli应用...
分类:移动开发   时间:2014-10-15 09:34:40    阅读次数:228
Phalcon之 提高性能:下一步该做什么?(Increasing Performance: What’s next?)
Phalcon中如何提升web应用性能...
分类:其他好文   时间:2014-10-14 13:36:18    阅读次数:289
175条   上一页 1 ... 11 12 13 14 15 ... 18 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!