本月博客排行
-
第1名
龙儿筝 -
第2名
johnsmith9th -
第3名
wy_19921005 - zysnba
- sgqt
- lemonhandsome
年度博客排行
-
第1名
宏天软件 -
第2名
青否云后端云 -
第3名
龙儿筝 - gashero
- wallimn
- vipbooks
- benladeng5225
- wy_19921005
- fantaxy025025
- qepwqnp
- e_e
- 解宜然
- zysnba
- ssydxa219
- sam123456gz
- javashop
- arpenker
- tanling8334
- kaizi1992
- xpenxpen
- gaojingsong
- wiseboyloves
- xiangjie88
- ranbuijj
- ganxueyun
- sichunli_030
- xyuma
- wangchen.ily
- jh108020
- lemonhandsome
- zxq_2017
- jbosscn
- Xeden
- luxurioust
- lzyfn123
- zhanjia
- forestqqqq
- johnsmith9th
- nychen2000
- ajinn
- wjianwei666
- hanbaohong
- daizj
- 喧嚣求静
- mwhgJava
- silverend
- kingwell.leng
- lchb139128
- lich0079
- kristy_yy
最新文章列表
zend studio安装svn插件
1.打开Zend studio开发工具,点菜单栏的help->Install New Software...;
2.点 Add按钮弹出Add Repository窗口; 在Name栏输入;subversion; 在Location栏输入;http://subclipse.tigris.org/update_1.8.x,然后点ok 按钮
3.在下边出现两项:Subclipse ...
linux/redhat/centos下为PHP增加pdo_mysql/drupal 安装pdo_mysql
解决这个问题
Starting php_fpm PHP Warning: PHP Startup: Unable to load dynamic library './pdo_mysql.so' - ./pdo_mysql.so: cannot open shared object file: No such file or directory in Unknown on line 0
默认 ...
PHP开发环境手工配置:php5.3+apache2.2+msql5.1+zendstudio
配置环境:php5.3 vc6 x86解压绿色版,apache2.2安装版,MYsql5.1.58 win32版+sqlyog 8.4中文版,zendstudio 10
◇php.ini配置:
0,打开PHP根目录:如果没有php.ini文件,就找到php.ini-dist或是php.ini-development文件改为php.ini在这个文件里进行配置
1,下载必须要VC6版的,我这里使用PH ...
Zend Framework 2的View Helper中使用Service Manager
<?php
namespace Core\Helper;
use Zend\View\Helper\AbstractHelper;
use Zend\ServiceManager\ServiceLocatorAwareInterface;
use Zend\ServiceManager\ServiceLocatorInterface;
/**
* View Hel ...
Zend Framework之Layout
为了让不同的View以相同的布局进行显示,我们可以编写布局模板文件,并以layout.phtml为名称进行保存,并在Index.php中指定这个文件所在的位置。
require_once'Zend/Layout.php';
Zend_Layout::startMvc(array('layoutPath'=>'../application/default/layouts'));
...
Zend Framework 视图中使用视图
<!DOCTYPEhtml
PUBLIC"-//W3C//DTDXHTML1.0Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<metahttp-equiv="Content ...