阅读:1666回复:0
PHP日常开发常用的小技巧_平时方向总结
PHP批量取得checkbox的值
1、命名 2、使用 当计划当作sql指令的一部分时:如果参与控制的字段是数值型的,则 if(! empty($_POST[’checkbox’])) { $expr = join(",", $_POST[’checkbox’]); $sql = "select * from tbl_name where field in ($expr)"; } 如果参与控制的字段是数值型的,则 if(! empty($_POST[’checkbox’])) { $expr = "’".join("’,’", $_POST[’checkbox’])."."; $sql = "select * from tbl_name where field in ($expr)"; } PHP判断Form表单是否提交 $action=$HTTP_POST_VARS["Button1"]; if($action=="提交") { //执行表单操作 } else { //读取默认值 } PHP 获取字符串长度 strlen($myrow[1]) PHP Url转向 Header("Location: ".$_SERVER["HTTP_REFERER"]); PHP超全局对象 PHP 表单取值 如果 mothod="get" 就用 $_GET["test"] 代替$test 如果 mothod="post" 就用 $_POST["test"] 代替$test PHP取得当前IP PHP 取得当前时间 date("Y年m月d日") Date ("Y-n-j") |
|