當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。