PHP网站开发中常用的8个小技巧_PHP
PHP批最取得checkbox的值
1、命名
代码如下:
$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)”;
}
3、PHP判断Form表单是否提交
代码如下:
$action=$HTTP_POST_VARS["Button1"];
if($action==”提交”)
{
//执行表单操作
}
else
{
//读取默认值
}
4、PHP 获取字符串长度
代码如下:
strlen($myrow[1])
PHP Url转向
代码如下:
Header(“Location: “.$_SERVER["HTTP_REFERER"]);
5、PHP超全局对象
代码如下:
$a = 1;
$b = 2;
function Sum()
{
$GLOBALS["b"] = $GLOBALS["a"] + $GLOBALS["b"];
}
Sum();
echo $b;
?>
6、PHP 表单取值
如果 mothod=”get” 就用 $_GET["test"] 代替$test
如果 mothod=”post” 就用 $_POST["test"] 代替$test
7、PHP取得当前IP
代码如下:
8、PHP 取得当前时间
代码如下:
echo date(“Y-m-d G:i:s”);
?>
date(“Y年m月d日”)
Date (“Y-n-j”)
上一篇: MySQL实现相仿Oracle的序列
下一篇: C++ 编译出错error:C4996