本文整理汇总了PHP中Head::getSecutity方法的典型用法代码示例。如果您正苦于以下问题:PHP Head::getSecutity方法的具体用法?PHP Head::getSecutity怎么用?PHP Head::getSecutity使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Head
的用法示例。
在下文中一共展示了Head::getSecutity方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1:
*@file head.php
*@author xieyoujiang
*@data 2016年2月1日
*@language PHP
*@e-mail xie_youjiang@163.com
*@copyright(c) 扬州格佳科技有限公司
*
*/
require_once 'init.php';
require_once './classpackage/Head.class.php';
if (!isset($_SESSION['userId']) || empty($_SESSION['userId'])) {
echo "<script>alert('timeout or logout');parent.location.href='index.php'</script>";
exit;
}
if (isset($_GET['active']) && $_GET['active'] == "secutity") {
$headBean = Head::getSecutity();
$smarty->assign("headBean", $headBean);
$smarty->display('security.html');
} else {
if (isset($_GET['active']) && $_GET['active'] == "head") {
$headBean = Head::getHead();
$smarty->assign("headBean", $headBean);
$smarty->display('security.html');
} else {
if (isset($_GET['active']) && $_GET['active'] == "alter") {
$id = $_GET['id'];
$strSql = "select f_id,f_fullname,f_phone,f_boss,f_time from t_head where f_id = '{$id}'";
$rs = DbOperator::queryAll($strSql);
echo json_encode($rs, JSON_UNESCAPED_UNICODE);
}
}