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


PHP GC_Utils_Ex::printXMLDeclaration方法代码示例

本文整理汇总了PHP中GC_Utils_Ex::printXMLDeclaration方法的典型用法代码示例。如果您正苦于以下问题:PHP GC_Utils_Ex::printXMLDeclaration方法的具体用法?PHP GC_Utils_Ex::printXMLDeclaration怎么用?PHP GC_Utils_Ex::printXMLDeclaration使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在GC_Utils_Ex的用法示例。


在下文中一共展示了GC_Utils_Ex::printXMLDeclaration方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: smarty_core_load_plugins

<?php

/* Smarty version 2.6.26, created on 2015-06-30 07:44:31
   compiled from C:%5Cwamp%5Cwww%5CGitHub%5CRise-Up%5Chtml/../data/Smarty/templates/admin/admin_popup_header.tpl */
require_once SMARTY_CORE_DIR . 'core.load_plugins.php';
smarty_core_load_plugins(array('plugins' => array(array('function', 'printXMLDeclaration', 'C:\\wamp\\www\\GitHub\\Rise-Up\\html/../data/Smarty/templates/admin/admin_popup_header.tpl', 1, false), array('function', 't', 'C:\\wamp\\www\\GitHub\\Rise-Up\\html/../data/Smarty/templates/admin/admin_popup_header.tpl', 60, false), array('modifier', 'script_escape', 'C:\\wamp\\www\\GitHub\\Rise-Up\\html/../data/Smarty/templates/admin/admin_popup_header.tpl', 29, false))), $this);
echo GC_Utils_Ex::printXMLDeclaration(array(), $this);
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja" lang="ja">

<head>
<meta http-equiv="content-type" content="application/xhtml+xml; charset=<?php 
echo is_array($_tmp = @CHAR_CODE) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp);
?>
" />
<meta http-equiv="content-script-type" content="text/javascript" />
<meta http-equiv="content-style-type" content="text/css" />
<link rel="stylesheet" href="<?php 
echo is_array($_tmp = $this->_tpl_vars['TPL_URLPATH']) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp);
?>
css/reset.css" type="text/css" media="all" />
<link rel="stylesheet" href="<?php 
echo is_array($_tmp = $this->_tpl_vars['TPL_URLPATH']) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp);
?>
css/admin_contents.css" type="text/css" media="all" />
<script type="text/javascript" src="<?php 
echo is_array($_tmp = @ROOT_URLPATH) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp);
?>
js/navi.js"></script>
开发者ID:Rise-Up-Cambodia,项目名称:Rise-Up,代码行数:31,代码来源:%%69^69B^69BCA863%%admin_popup_header.tpl.php

示例2: printXMLDeclaration

 /**
  * 前方互換用
  *
  * @deprecated 2.12.0 GC_Utils_Ex::printXMLDeclaration を使用すること
  */
 function printXMLDeclaration()
 {
     trigger_error('前方互換用メソッドが使用されました。', E_USER_WARNING);
     GC_Utils_Ex::printXMLDeclaration();
 }
开发者ID:nassos9090,项目名称:plugin,代码行数:10,代码来源:SC_Utils.php

示例3: printXMLDeclaration

 /**
  * 前方互換用
  *
  * @deprecated 2.12.0 GC_Utils_Ex::printXMLDeclaration を使用すること
  */
 function printXMLDeclaration()
 {
     trigger_error(t("c_A method for upward compatibility was used._01"), E_USER_WARNING);
     GC_Utils_Ex::printXMLDeclaration();
 }
开发者ID:Rise-Up-Cambodia,项目名称:Rise-Up,代码行数:10,代码来源:SC_Utils.php


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