本文整理汇总了PHP中Ethna_Controller::getClientEncoding方法的典型用法代码示例。如果您正苦于以下问题:PHP Ethna_Controller::getClientEncoding方法的具体用法?PHP Ethna_Controller::getClientEncoding怎么用?PHP Ethna_Controller::getClientEncoding使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Ethna_Controller
的用法示例。
在下文中一共展示了Ethna_Controller::getClientEncoding方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: _getRenderer
/**
* レンダラオブジェクトを取得する
*
* @access protected
* @return object Ethna_Renderer レンダラオブジェクト
*/
public function _getRenderer()
{
$c = $this->backend->getController();
$renderer = $c->getRenderer();
$form_array = $this->af->getArray();
$app_array = $this->af->getAppArray();
$app_ne_array = $this->af->getAppNEArray();
$renderer->setPropByRef('form', $form_array);
$renderer->setPropByRef('app', $app_array);
$renderer->setPropByRef('app_ne', $app_ne_array);
$message_list = Ethna_Util::escapeHtml($this->ae->getMessageList());
$renderer->setPropByRef('errors', $message_list);
if (isset($_SESSION)) {
$tmp_session = Ethna_Util::escapeHtml($_SESSION);
$renderer->setPropByRef('session', $tmp_session);
}
$renderer->setProp('script', htmlspecialchars(basename($_SERVER['SCRIPT_NAME']), ENT_QUOTES, $this->ctl->getClientEncoding()));
$renderer->setProp('request_uri', isset($_SERVER['REQUEST_URI']) ? htmlspecialchars($_SERVER['REQUEST_URI'], ENT_QUOTES, $this->ctl->getClientEncoding()) : '');
$renderer->setProp('config', $this->config->get());
return $renderer;
}
示例2: setClientEncoding
/**
* @test
*/
function setClientEncoding()
{
$this->controller->setClientEncoding('Shift_JIS');
$this->assertEquals('Shift_JIS', $this->controller->getClientEncoding());
}