本文整理匯總了PHP中templates::Heads方法的典型用法代碼示例。如果您正苦於以下問題:PHP templates::Heads方法的具體用法?PHP templates::Heads怎麽用?PHP templates::Heads使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類templates
的用法示例。
在下文中一共展示了templates::Heads方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: iframe
function iframe()
{
$page = CurrentPageName();
$tpl = new templates();
$head = $tpl->Heads();
$user = new user($_SESSION["uid"]);
$html = "\n\t{$head}\n\t<body style='margin:0px;padding:0px;background:none'>\n\t<span style='font-size:16px;font-weight:bold'>{$_GET["Photo_error"]}</span>\n\t<form method=\"post\" enctype=\"multipart/form-data\" action=\"{$page}\">\n\t<input type='hidden' name='uid' value='{$_SESSION["uid"]}'>\n\t{$hidden}\n\t<p>\n\t\t<input type=\"file\" name=\"photo\" size=\"30\">\n\t\t<div style='width:100%;text-align:right'><input type='submit' name='upload' value='{upload file} »' style='width:200px'></div>\n\t</p>\n\t</form>\n\t<center>\n\t<center style='margin:10px;padding:5px;border:1px solid #005447;width:120px'>\n\t<img src='{$user->img_identity}'>\n\t</center>\n\t</center>\n\t</body>\n\t</html>\n\t";
$tpl = new templates();
echo $tpl->_ENGINE_parse_body($html);
}