在使用ZendFramework時,有時會用到jquery
可以透過SVN下載ZendX
http://framework.zend.com/svn/framework/extras/trunk
2010年3月13日 星期六
2010年3月9日 星期二
Zend Framework Session
ZF的Session可以在全域使用
可用再換頁時的資料傳遞
$DF = new Zend_Session_Namespace('DF');
指定
$DF->contacts = array('A', 'B','C');
取用
$contacts = (array) $DF->contacts;
可用再換頁時的資料傳遞
$DF = new Zend_Session_Namespace('DF');
指定
$DF->contacts = array('A', 'B','C');
取用
$contacts = (array) $DF->contacts;
2010年3月5日 星期五
jquery自動登入!!抓按鍵事件
$(document).keydown(function(e){
//keyCode為Enter
if (e.keyCode == 13) {
$("#form1").submit();
}
});
//keyCode為Enter
if (e.keyCode == 13) {
$("#form1").submit();
}
});
2010年3月2日 星期二
Zend-framework設定快取
$this->getResponse()->setHeader('Expires', '', true);
$this->getResponse()->setHeader('Cache-Control', 'public', true);
$this->getResponse()->setHeader('Cache-Control', 'max-age=3800');
$this->getResponse()->setHeader('Pragma', '', true);
透過重寫ZendFramework的Header可以設定快取
也可以輸出XML的Header
$this->getResponse()->setHeader('Content-Type', 'text/html; charset=UTF-8');
$this->getResponse()->setHeader('Cache-Control', 'public', true);
$this->getResponse()->setHeader('Cache-Control', 'max-age=3800');
$this->getResponse()->setHeader('Pragma', '', true);
透過重寫ZendFramework的Header可以設定快取
也可以輸出XML的Header
$this->getResponse()->setHeader('Content-Type', 'text/html; charset=UTF-8');
訂閱:
文章 (Atom)