本文整理汇总了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);
}