facebook twitter hatena line email

Php/zend framework/技術メモ

提供: 初心者エンジニアの簡易メモ
2015年5月20日 (水) 03:08時点における127.0.0.1 (トーク)による版 (ページの作成:「==APPLICATION_PATH変更== .htaccessの以下を変更 SetEnv APPLICATION_ENV development ==エスケープ処理== <?php print $this->escape($this->test);?> ==ビュ...」)

(差分) ←前の版 | 最新版 (差分) | 次の版→ (差分)
移動: 案内検索

APPLICATION_PATH変更

.htaccessの以下を変更

SetEnv APPLICATION_ENV development

エスケープ処理

<?php print $this->escape($this->test);?>

ビュー無効化

$this->_helper->viewRenderer->setNoRender(true);

ビュー変更

$this->render("test");
// コントローラー変更
$this->render("test/test", null, true); // test/test.phtmlをみる

リクエスト処理

http://~/cont1/act1/page/2?id=1の場合

print $this->_request->controller; // cont1
print $this->_request->action; // act1
print $this->_request->page;  // 2
print $this->_request->id; // 1
// 以下も同意
$req = $this->getRequest();
$req->controller; // cont1

リクエストの存在チェック

$this->getRequest()->isPost()

スーパーグローバル対応メソッド

$this->getRequest()->getQuery()    $_GET
$this->getRequest()->getPost()    $_POST
$this->getRequest()->getCookie()  $_COOKIE
$this->getRequest()->getServer()  $_SERVER
$this->getRequest()->getEnv()    $_ENV

Iniクラスの使い方

app.ini

[cateini]
ini1=hoge
ini2=fuga

actionなどに

require_once 'Zend/Config/Ini.php';
$ini = new Zend_Config_Ini('../configs/app.ini', 'cateini');
print $ini->ini1; // hoge

キャメルケースのアクションにアクセス

~/controller1/test-testにアクセスするとtestTestAction()へ渡る

forward先でaction名を取得

echo $this->getRequest()->getActionName();

staticをグローバル変数のように扱う

class Test
{
  static public $i = 0;
}
Test::$i++;
print Test::$i;