一些使用频率比较高的PHP函数

  •   2009-07-31/23:01
  • 在php开发中,我们经常会遇到一些函数,下面是整理好的,可以直接使用,方便开发效率,不过建议大家一定要先看懂,然后在这个基础上增加功能就提高了自身能力了
    1.产生随机字符串函数
    function random($length) {
    $hash = #)
    {
    $html ="<html><head>";
    if(!empty($url))
    $html .="<@# content=\"3;url=@#".$url."@#\">";
    $html .="<@# type=text/css rel=stylesheet>";
    $html .="</head><body><br><br><br><br>";
    $html .="<@#>";
    $html .="<tr><@#>";
    $html .="<@#>";
    $html .="<@#>";
    $html .="<td>".$title."</td></tr>";
    $html .="<@#>";
    $html .="<br>".$message."<br><br>";
    if (!empty($url))
    $html .="系统将在3秒后返回<br>如果您的浏览器不能自动返回,请点击[<a href=".$url." target=_self>这里</a>]进入";
    else
    $html .="[<a )@#>返回</a>]";
    $html .="</td></tr></table></td></tr></table>";
    $html .="</body></html>";
    echo $html;
    exit;
    }
    7.分页(两个函数配合使用)
    function getpage($sql,$page_size=20)
    {
    global $page,$totalpage,$sums; //out param
    $page = $_get["page"];
    //$eachpage = $page_size;
    $pagesql = strstr($sql," from ");
    $pagesql = "select count(*) as ids ".$pagesql;
    $result = mysql_query($pagesql);
    if($rs = mysql_fetch_array($result)) $sums = $rs[0];
    $totalpage = ceil($sums/$page_size);
    if((!$page)||($page<1)) $page=1;
    $startpos = ($page-1)*$page_size;
    $sql .=" limit $startpos,$page_size ";
    return $sql;
    }
    function showbar($string="")
    {
    global $page,$totalpage;
    $out="共<font ".$totalpage.">页 ";
    $linknum =4;
    $start = ($page-round($linknum/2))>0 ? ($page-round($linknum/2)) : "1";
    $end = ($page+round($linknum/2))<$totalpage ? ($page+round($linknum/2)) : $totalpage;
    $prestart=$start-1;
    $nextend=$end+1;
    if($page<>1)
    $out .= "<=第一页>第一页</a> ";
    if($start>1)
    $out.="<."@# title=上一页>..<<</a> ";
    for($t=$start;$t<=$end;$t++)
    {
    $out .= ($page==$t) ? "<font [".$t."]color=@#red@#><b>[".$t."]</b></font> " : "<> ";
    }
    if($end<$totalpage)
    $out.="<."@# title=下一页>>>..</a>";
    if($page<>$totalpage)
    $out .= " <."@# title=最后页>最后页</a>";
    return $out;
    }
    8.获取新插入数据的id
    <?
    mysql_insert_id();
    ?>
    本文来自: 脚本之家() 详细出处参考:

    评论 {{userinfo.comments}}

    {{money}}

    {{question.question}}

    A {{question.A}}
    B {{question.B}}
    C {{question.C}}
    D {{question.D}}
    提交

    驱动号 更多