当前位置: 首页>>代码示例>>PHP>>正文


PHP Ethna_Controller::getClientEncoding方法代码示例

本文整理汇总了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;
 }
开发者ID:t-f-m,项目名称:ethna,代码行数:27,代码来源:ViewClass.php

示例2: setClientEncoding

 /**
  * @test
  */
 function setClientEncoding()
 {
     $this->controller->setClientEncoding('Shift_JIS');
     $this->assertEquals('Shift_JIS', $this->controller->getClientEncoding());
 }
开发者ID:t-f-m,项目名称:ethna,代码行数:8,代码来源:ControllerTest.php


注:本文中的Ethna_Controller::getClientEncoding方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。