在处理提交表的的handle方法中,主要用I函数来解析接收的参数值:
if (!IS_POST) {
$url=U('index', '', '', true);
redirect($url, $time=3, $msg='will redirect in 5 seconds...');
}
$data = array(
'username' => I('username','','htmlspecialchars'), // 第二个参数是默认值,第三个参数是用htmlspecialchars方法过滤可能的有害数据
'content' => I('content','','htmlspecialchars'),
'time' => time()
);
p($data); // 显示接收的数值
显示:
Array
(
[username] => 新浪网
[content] => 欢迎浏览战豪的新浪微波[抱抱]
[time] => 1406688001
)