本文整理匯總了PHP中string::un_html方法的典型用法代碼示例。如果您正苦於以下問題:PHP string::un_html方法的具體用法?PHP string::un_html怎麽用?PHP string::un_html使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類string
的用法示例。
在下文中一共展示了string::un_html方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: SaeMysql
<HEAD>
<meta charset="utf-8">
<TITLE>部門添加/修改</TITLE>
</HEAD>
<body>
<?php
include "base-class.php";
//新建sae數據庫類
$mysql = new SaeMysql();
//獲取部門ID號傳入
$class_id = intval($_GET["class_id"]);
//獲取操作標識傳入
$action = $_POST["action"];
$action = string::un_script_code($action);
$action = string::un_html($action);
//判斷是否修改,如果傳入了部門ID,進行數據庫查詢獲取全部內容
if ($class_id) {
$class_value = $mysql->getLine("select * from class where class_id={$class_id}");
if (!$class_value) {
echo "<script>alert('無此部門');history.back();</Script>";
exit;
}
}
//如果獲取到操作標識,進行錄入或者修改操作
if ($action == "update") {
//獲取表單傳入數據
$old_class_id = $_POST["class_id"];
$class_name = $_POST["class_name"];
$class_fid = $_POST["class_fid"];
//傳入數據過濾