搜索
首页后端开发php教程php实战第三天_PHP教程
php实战第三天_PHP教程Jul 14, 2016 am 10:10 AM
jqueryphp修改内容实战布局特效

 
\ 
做了一个新的布局,感觉比以前的舒服.

jquery的特效也修改了.移到到内容区块就把文本的颜色改成漂亮的蓝色.移除去掉.


[javascript]  // JavaScript Document  
$(document).ready(function(e) { 
    $user=$("div .user"); 
    $text=$("div .text"); 
     
    $("div .content").each(function(index){ 
        $(this).mousemove(function(){ 
         
        $user.eq(index).css("color","#0A8CD2"); 
 
    //  $user.eq(index).css("background","#FFE6AD");  
    //  $text.eq(index).css("background","#FFFDF6");  
         
        }).mouseout(function(){ 
         
        $user.eq(index).css("color","#000"); 
 
    //  $user.eq(index).css("background","#E6F0F9");  
    //  $text.eq(index).css("background","#F8FBFD");  
        }); 
    }); 
 
     
}); 

// JavaScript Document
$(document).ready(function(e) {
 $user=$("div .user");
 $text=$("div .text");
 
 $("div .content").each(function(index){
  $(this).mousemove(function(){
  
  $user.eq(index).css("color","#0A8CD2");

 // $user.eq(index).css("background","#FFE6AD");
 // $text.eq(index).css("background","#FFFDF6");
  
  }).mouseout(function(){
  
  $user.eq(index).css("color","#000");

 // $user.eq(index).css("background","#E6F0F9");
 // $text.eq(index).css("background","#F8FBFD");
  });
 });

   
});

数据库中增加了 time字段,类型为int,长度为 11;

添加留言时,调用 time()函数返回的ux时间戳,

数据库中读出时,调用 date()函数


[php]  date('Y-m-d H:i:s',$value['time']);//对时间戳进行转换为日期 

 date('Y-m-d H:i:s',$value['time']);//对时间戳进行转换为日期
然后还添加了一个分页代码


[php]  function index() { 
 
    include "page.class.php"; 
             
    $rows = $this->db->count('select * from data'); 
 
    $page = new Page($rows, 5, ""); 
 
    $page -> set("head", "条留言"); 
    $page -> set("first", "首页") 
              -> set("prev", "上一页") 
                      -> set("next", "下一页") 
                      -> set("last", "尾页");          
 
    $list=$this->db 
           ->order('id DESC') 
           ->limit($page->getLimit()) 
           ->select(); 
     
    $this->assign("page",$page->fpage(0,3,4,5,6)); 
    $this->assign("list",$list); 
    $this->assign("title", "我的留言板");    //分配标题变量给头部模板header.tpl  
     
 
    $this->display();                     //包括替换模板中的变量输出模板页面  

  function index() {

   include "page.class.php";
     
   $rows = $this->db->count('select * from data');

   $page = new Page($rows, 5, "");
 
   $page -> set("head", "条留言");
   $page -> set("first", "首页")
            -> set("prev", "上一页")
                    -> set("next", "下一页")
                    -> set("last", "尾页");       
 
   $list=$this->db
       ->order('id DESC')
        ->limit($page->getLimit())
        ->select();
   
   $this->assign("page",$page->fpage(0,3,4,5,6));
   $this->assign("list",$list);
   $this->assign("title", "我的留言板");    //分配标题变量给头部模板header.tpl
   
 
   $this->display();                     //包括替换模板中的变量输出模板页面
  }
效果还不错噢.

page.class.php 源码附上

[php]      /**
        file: page.class.php 
        完美分页类 Page 
        @微凉 QQ496928838
    */ 
    class Page { 
        private $total;                         //数据表中总记录数  
        private $listRows;                      //每页显示行数  
        private $limit;                         //SQL语句使用limit从句,限制获取记录个数  
        private $uri;                           //自动获取url的请求地址  
        private $pageNum;                       //总页数  
        private $page;                          //当前页     
        private $config = array( 
                            'head' => "条记录",  
                            'prev' => "上一页",  
                            'next' => "下一页",  
                            'first'=> "首页",  
                            'last' => "末页" 
                        );                      //在分页信息中显示内容,可以自己通过set()方法设置  
        private $listNum = 10;                  //默认分页列表显示的个数  
 
        /**
            构造方法,可以设置分页类的属性
            @param  int $total      计算分页的总记录数
            @param  int $listRows   可选的,设置每页需要显示的记录数,默认为25条
            @param  mixed   $query  可选的,为向目标页面传递参数,可以是数组,也可以是查询字符串格式
            @param  bool    $ord    可选的,默认值为true, 页面从第一页开始显示,false则为最后一页
         */ 
        public function __construct($total, $listRows=25, $query="", $ord=true){ 
            $this->total = $total; 
            $this->listRows = $listRows; 
            $this->uri = $this->getUri($query); 
            $this->pageNum = ceil($this->total / $this->listRows); 
            /*以下判断用来设置当前面*/ 
            if(!empty($_GET["page"])) { 
                $page = $_GET["page"]; 
            }else{ 
                if($ord) 
                    $page = 1; 
                else 
                    $page = $this->pageNum; 
            } 
 
            if($total > 0) { 
                if(preg_match('/\D/', $page) ){ 
                    $this->page = 1; 
                }else{ 
                    $this->page = $page; 
                } 
            }else{ 
                $this->page = 0; 
            } 
             
            $this->limit = "LIMIT ".$this->getLimit(); 
        } 
 
        /**
            用于设置显示分页的信息,可以进行连贯操作
            @param  string  $param  是成员属性数组config的下标
            @param  string  $value  用于设置config下标对应的元素值
            @return object          返回本对象自己$this, 用于连惯操作
         */ 
        function set($param, $value){ 
            if(array_key_exists($param, $this->config)){ 
                $this->config[$param] = $value; 
            } 
            return $this; 
        } 
         
        /* 不是直接去调用,通过该方法,可以使用在对象外部直接获取私有成员属性limit和page的值 */ 
        function __get($args){ 
            if($args == "limit" || $args == "page") 
                return $this->$args; 
            else 
                return null; 
        } 
         
        /**
            按指定的格式输出分页
            @param  int 0-7的数字分别作为参数,用于自定义输出分页结构和调整结构的顺序,默认输出全部结构
            @return string  分页信息内容
         */ 
        function fpage(){ 
            $arr = func_get_args(); 
 
            $html[0] = " 共 {$this->total} {$this->config["head"]} "; 
            $html[1] = " 本页 ".$this->disnum()." 条 "; 
            $html[2] = " 本页从 {$this->start()}-{$this->end()} 条 "; 
            $html[3] = " {$this->page}/{$this->pageNum}页 "; 
            $html[4] = $this->firstprev(); 
            $html[5] = $this->pageList(); 
            $html[6] = $this->nextlast(); 
            $html[7] = $this->goPage(); 
 
            $fpage = '

'; 
            if(count($arr)                 $arr = array(0, 1,2,3,4,5,6,7); 
                 
            for($i = 0; $i                 $fpage .= $html[$arr[$i]]; 
         
            $fpage .= '
'; 
            return $fpage; 
        } 
         
        /* 格式为 1,5,*/ 
        function getLimit(){ 
            if($this->page > 0) 
                return ($this->page-1)*$this->listRows.", {$this->listRows}"; 
            else 
                return 0; 
        } 
 
        /* 在对象内部使用的私有方法,用于自动获取访问的当前URL */ 
        private function getUri($query){     
            $request_uri = $_SERVER["REQUEST_URI"];  
            $url = strstr($request_uri,'?') ? $request_uri :  $request_uri.'?'; 
             
            if(is_array($query)) 
                $url .= http_build_query($query); 
            else if($query != "") 
                $url .= "&".trim($query, "?&"); 
         
            $arr = parse_url($url); 
 
            if(isset($arr["query"])){ 
                parse_str($arr["query"], $arrs); 
                unset($arrs["page"]); 
                $url = $arr["path"].'?'.http_build_query($arrs); 
            } 
             
            if(strstr($url, '?')) { 
                if(substr($url, -1)!='?') 
                    $url = $url.'&'; 
            }else{ 
                $url = $url.'?'; 
            } 
             
            return $url; 
        } 
 
        /* 在对象内部使用的私有方法,用于获取当前页开始的记录数 */ 
        private function start(){ 
            if($this->total == 0) 
                return 0; 
            else 
                return ($this->page-1) * $this->listRows+1; 
        } 
 
        /* 在对象内部使用的私有方法,用于获取当前页结束的记录数 */ 
        private function end(){ 
            return min($this->page * $this->listRows, $this->total); 
        } 
 
        /* 在对象内部使用的私有方法,用于获取上一页和首页的操作信息 */ 
        private function firstprev(){ 
            if($this->page > 1) { 
                $str = " uri}page=1'>{$this->config["first"]} "; 
                $str .= "uri}page=".($this->page-1)."'>{$this->config["prev"]} ";         
                return $str; 
            } 
 
        } 
     
        /* 在对象内部使用的私有方法,用于获取页数列表信息 */ 
        private function pageList(){ 
            $linkPage = " "; 
             
            $inum = floor($this->listNum/2); 
            /*当前页前面的列表 */ 
            for($i = $inum; $i >= 1; $i--){ 
                $page = $this->page-$i; 
 
                if($page >= 1) 
                    $linkPage .= "uri}page={$page}'>{$page} "; 
            } 
            /*当前页的信息 */ 
            if($this->pageNum > 1) 
                $linkPage .= "{$this->page} "; 
             
            /*当前页后面的列表 */ 
            for($i=1; $i                 $page = $this->page+$i; 
                if($page pageNum) 
                    $linkPage .= "uri}page={$page}'>{$page} "; 
                else 
                    break; 
            } 
            $linkPage .= '
'; 
            return $linkPage; 
        } 
 
        /* 在对象内部使用的私有方法,获取下一页和尾页的操作信息 */ 
        private function nextlast(){ 
            if($this->page != $this->pageNum) { 
                $str = " uri}page=".($this->page+1)."'>{$this->config["next"]} "; 
                $str .= " uri}page=".($this->pageNum)."'>{$this->config["last"]} "; 
                return $str; 
            } 
        } 
 
        /* 在对象内部使用的私有方法,用于显示和处理表单跳转页面 */ 
        private function goPage(){ 
                if($this->pageNum > 1) { 
                return ' '; 
            } 
        } 
 
        /* 在对象内部使用的私有方法,用于获取本页显示的记录条数 */ 
        private function disnum(){ 
            if($this->total > 0){ 
                return $this->end()-$this->start()+1; 
            }else{ 
                return 0; 
            } 
        } 
    } 
 
     
     
     

 /**
  file: page.class.php
  完美分页类 Page
  @微凉 QQ496928838
 */
 class Page {
  private $total;          //数据表中总记录数
  private $listRows;       //每页显示行数
  private $limit;          //SQL语句使用limit从句,限制获取记录个数
  private $uri;            //自动获取url的请求地址
  private $pageNum;        //总页数
  private $page;       //当前页 
  private $config = array(
       'head' => "条记录",
       'prev' => "上一页",
       'next' => "下一页",
       'first'=> "首页",
       'last' => "末页"
      );       //在分页信息中显示内容,可以自己通过set()方法设置
  private $listNum = 10;      //默认分页列表显示的个数

  /**
   构造方法,可以设置分页类的属性
   @param int $total  计算分页的总记录数
   @param int $listRows 可选的,设置每页需要显示的记录数,默认为25条
   @param mixed $query 可选的,为向目标页面传递参数,可以是数组,也可以是查询字符串格式
   @param  bool $ord 可选的,默认值为true, 页面从第一页开始显示,false则为最后一页
   */
  public function __construct($total, $listRows=25, $query="", $ord=true){
   $this->total = $total;
   $this->listRows = $listRows;
   $this->uri = $this->getUri($query);
   $this->pageNum = ceil($this->total / $this->listRows);
   /*以下判断用来设置当前面*/
   if(!empty($_GET["page"])) {
    $page = $_GET["page"];
   }else{
    if($ord)
     $page = 1;
    else
     $page = $this->pageNum;
   }

   if($total > 0) {
    if(preg_match('/\D/', $page) ){
     $this->page = 1;
    }else{
     $this->page = $page;
    }
   }else{
    $this->page = 0;
   }
   
   $this->limit = "LIMIT ".$this->getLimit();
  }

  /**
   用于设置显示分页的信息,可以进行连贯操作
   @param string $param 是成员属性数组config的下标
   @param string $value 用于设置config下标对应的元素值
   @return object   返回本对象自己$this, 用于连惯操作
   */
  function set($param, $value){
   if(array_key_exists($param, $this->config)){
    $this->config[$param] = $value;
   }
   return $this;
  }
  
  /* 不是直接去调用,通过该方法,可以使用在对象外部直接获取私有成员属性limit和page的值 */
  function __get($args){
   if($args == "limit" || $args == "page")
    return $this->$args;
   else
    return null;
  }
  
  /**
   按指定的格式输出分页
   @param int 0-7的数字分别作为参数,用于自定义输出分页结构和调整结构的顺序,默认输出全部结构
   @return string 分页信息内容
   */
  function fpage(){
   $arr = func_get_args();

   $html[0] = " 共 {$this->total} {$this->config["head"]} ";
   $html[1] = " 本页 ".$this->disnum()." 条 ";
   $html[2] = " 本页从 {$this->start()}-{$this->end()} 条 ";
   $html[3] = " {$this->page}/{$this->pageNum}页 ";
   $html[4] = $this->firstprev();
   $html[5] = $this->pageList();
   $html[6] = $this->nextlast();
   $html[7] = $this->goPage();

   $fpage = '

';
   if(count($arr)     $arr = array(0, 1,2,3,4,5,6,7);
    
   for($i = 0; $i     $fpage .= $html[$arr[$i]];
  
   $fpage .= '
';
   return $fpage;
  }
  
  /* 格式为 1,5,*/
  function getLimit(){
   if($this->page > 0)
    return ($this->page-1)*$this->listRows.", {$this->listRows}";
   else
    return 0;
  }

  /* 在对象内部使用的私有方法,用于自动获取访问的当前URL */
  private function getUri($query){ 
   $request_uri = $_SERVER["REQUEST_URI"]; 
   $url = strstr($request_uri,'?') ? $request_uri :  $request_uri.'?';
   
   if(is_array($query))
    $url .= http_build_query($query);
   else if($query != "")
    $url .= "&".trim($query, "?&");
  
   $arr = parse_url($url);

   if(isset($arr["query"])){
    parse_str($arr["query"], $arrs);
    unset($arrs["page"]);
    $url = $arr["path"].'?'.http_build_query($arrs);
   }
   
   if(strstr($url, '?')) {
    if(substr($url, -1)!='?')
     $url = $url.'&';
   }else{
    $url = $url.'?';
   }
   
   return $url;
  }

  /* 在对象内部使用的私有方法,用于获取当前页开始的记录数 */
  private function start(){
   if($this->total == 0)
    return 0;
   else
    return ($this->page-1) * $this->listRows+1;
  }

  /* 在对象内部使用的私有方法,用于获取当前页结束的记录数 */
  private function end(){
   return min($this->page * $this->listRows, $this->total);
  }

  /* 在对象内部使用的私有方法,用于获取上一页和首页的操作信息 */
  private function firstprev(){
   if($this->page > 1) {
    $str = " uri}page=1'>{$this->config["first"]} ";
    $str .= "uri}page=".($this->page-1)."'>{$this->config["prev"]} ";  
    return $str;
   }

  }
 
  /* 在对象内部使用的私有方法,用于获取页数列表信息 */
  private function pageList(){
   $linkPage = " ";
   
   $inum = floor($this->listNum/2);
   /*当前页前面的列表 */
   for($i = $inum; $i >= 1; $i--){
    $page = $this->page-$i;

    if($page >= 1)
     $linkPage .= "uri}page={$page}'>{$page} ";
   }
   /*当前页的信息 */
   if($this->pageNum > 1)
    $linkPage .= "{$this->page} ";
   
   /*当前页后面的列表 */
   for($i=1; $i     $page = $this->page+$i;
    if($page pageNum)
     $linkPage .= "uri}page={$page}'>{$page} ";
    else
     break;
   }
   $linkPage .= '';
   return $linkPage;
  }

  /* 在对象内部使用的私有方法,获取下一页和尾页的操作信息 */
  private function nextlast(){
   if($this->page != $this->pageNum) {
    $str = " uri}page=".($this->page+1)."'>{$this->config["next"]} ";
    $str .= " uri}page=".($this->pageNum)."'>{$this->config["last"]} ";
    return $str;
   }
  }

  /* 在对象内部使用的私有方法,用于显示和处理表单跳转页面 */
  private function goPage(){
       if($this->pageNum > 1) {
    return ' ';
   }
  }

  /* 在对象内部使用的私有方法,用于获取本页显示的记录条数 */
  private function disnum(){
   if($this->total > 0){
    return $this->end()-$this->start()+1;
   }else{
    return 0;
   }
  }
 }

 
 
 
这是一个很强大的分页类噢.虽然样子丑了点,不过,可以改造一下哩

mysql.class.php呢我修改了一下 limit方法,使他可以支持一个参数的,和两个参数的,更方便操作了


[php]  public function limit($offset,$length=null){ 
    if (is_null($length)) { 
        $this->query_list['limit']='limit '.$offset; 
        return $this; 
    }else { 
        if(!isset($length)){ 
            $length = $offset; 
            $offset = 0; 
        } 
            $this->query_list['limit'] = 'limit '.$offset.','.$length; 
            return $this; 
    } 

 public function limit($offset,$length=null){
  if (is_null($length)) {
   $this->query_list['limit']='limit '.$offset;
   return $this;
  }else {
   if(!isset($length)){
    $length = $offset;
    $offset = 0;
   }
    $this->query_list['limit'] = 'limit '.$offset.','.$length;
    return $this;
  }

 

 

还学会了设置时区.


[php] date_default_timezone_set("PRC");            //设置时区(中国 

 date_default_timezone_set("PRC");       //设置时区(中国


修改了 mytpl.class.php 模板引擎,不会造成溢出什么的了


[php]      /**
        file: mytpl.class.php 类名为MyTpl是自定义的模板引擎
        通过该类对象加载模板文件并解析,将解析后的结果输出 
        @微凉 QQ496928838
    */ 
    class MyTpl { 
        public $template_dir = 'view';       //定义模板文件存放的目录    
        public $compile_dir = 'view_c';      //定义通过模板引擎组合后文件存放目录  
        public $left_delimiter  =  '         public $right_delimiter =  '}>';          //在模板中嵌入动态数据变量的右定界符号  
        private $tpl_vars = array();              //内部使用的临时变量  
         
        /** 
            将PHP中分配的值会保存到成员属性$tpl_vars中,用于将板中对应的变量进行替换  
            @param  string  $tpl_var    需要一个字符串参数作为关联数组下标,要和模板中的变量名对应    
            @param  mixed   $value      需要一个标量类型的值,用来分配给模板中变量的值     
        */ 
        function assign($tpl_var, $value = null) {    
            if ($tpl_var != ''){ 
                $GLOBALS[$tpl_var] = $value; 
                $this->tpl_vars[$tpl_var] = $value; 
                 
            } 
 
 
 
        } 
         
        /** 
            加载指定目录下的模板文件,并将替换后的内容生成组合文件存放到另一个指定目录下
            @param  string  $fileName   提供模板文件的文件名                                          
        */ 
         function display($fileName) {  
            /* 到指定的目录中寻找模板文件 */ 
            $tplFile = $this->template_dir.'/'.$fileName;   
            /* 如果需要处理的模板文件不存在,则退出并报告错误 */ 
            if(!file_exists($tplFile)) {                 
                die("模板文件{$tplFile}不存在!"); 
            } 
            /* 获取组合的模板文件,该文件中的内容都是被替换过的 */ 
            $fileNameMd5 = md5($fileName); 
 
            $comFileName = $this->compile_dir."/com_".$fileNameMd5.'.php';   
                    /* 判断替换后的文件是否存在或是存在但有改动,都需要重新创建 */ 
            if(!file_exists($comFileName) || filemtime($comFileName)                 /* 调用内部替换模板方法 */ 
                $repContent = $this->tpl_replace(file_get_contents($tplFile));   
                /* 保存由系统组合后的脚本文件 */ 
                file_put_contents($comFileName, $repContent); 
            } 
            /* 包含处理后的模板文件输出给客户端 */ 
            include($comFileName);               
        } 
         
        /**  
            内部使用的私有方法,使用正则表达式将模板文件''中的语句替换为对应的值或PHP代码 
            @param  string  $content    提供从模板文件中读入的全部内容字符串   
            @return $repContent         返回替换后的字符串
        */ 
        private function tpl_replace($content) { 
            /* 将左右定界符号中,有影响正则的特殊符号转义  例如,转义\ */ 
            $left = preg_quote($this->left_delimiter, '/'); 
            $right = preg_quote($this->right_delimiter, '/'); 
 
            /* 匹配模板中各种标识符的正则表达式的模式数组 */ 
            $pattern = array(        
                /* 匹配模板中变量 ,例如,""  */ 
                '/'.$left.'\s*\$([a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*)\s*'.$right.'/i',      
                /* 匹配模板中if标识符,例如 " " */ 
                '/'.$left.'\s*if\s*(.+?)\s*'.$right.'(.+?)'.$left.'\s*\/if\s*'.$right.'/ies',  
                /* 匹配elseif标识符, 例如 "" */ 
                '/'.$left.'\s*else\s*if\s*(.+?)\s*'.$right.'/ies',  
                /* 匹配else标识符, 例如 "" */ 
                '/'.$left.'\s*else\s*'.$right.'/is',    
                /* 用来匹配模板中的loop标识符,用来遍历数组中的值,  例如 " " */ 
                '/'.$left.'\s*loop\s+\$(\S+)\s+\$([a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*)\s*'.$right.'(.+?)'.$left.'\s*\/loop\s*'.$right.'/is', 
                /* 用来遍历数组中的键和值,例如 " $value }> "  */ 
                '/'.$left.'\s*loop\s+\$(\S+)\s+\$([a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*)\s*=>\s*\$(\S+)\s*'.$right.'(.+?)'.$left.'\s*\/loop \s*'.$right.'/is',  
                /* 匹配include标识符, 例如,'' */ 
                '/'.$left.'\s*include\s+[\"\']?(.+?)[\"\']?\s*'.$right.'/ie'                     
            ); 
             
            /* 替换从模板中使用正则表达式匹配到的字符串数组 */ 
            $replacement = array(   
                /* 替换模板中的变量 tpl_vars["var"]; */ 
                'tpl_vars["${1}"]; ?>',       
                /* 替换模板中的if字符串 */ 
                '$this->stripvtags(\'\',\'${2}\')',      
                /* 替换elseif的字符串 */ 
                '$this->stripvtags(\'\',"")',   
                /* 替换else的字符串 */ 
                '',    
                /* 以下两条用来替换模板中的loop标识符为foreach格式 */ 
                'tpl_vars["${1}"] as $this->tpl_vars["${2}"]) { ?>${3}',   
                'tpl_vars["${1}"] as $this->tpl_vars["${2}"] => $this->tpl_vars["${3}"]) { ?>${4}',     
                /*替换include的字符串*/ 
                'file_get_contents($this->template_dir."/'.$GLOBALS['className'].'/${1}")' 
                         
            ); 
             
            /* 使用正则替换函数处理 */ 
            $s_content=$content; 
 
            $repContent = preg_replace($pattern, $replacement, $content);    
            /* 如果还有要替换的标识,递归调用自己再次替换 */ 
            if(preg_match('/'.$left.'([^('.$right.')]{1,})'.$right.'/', $repContent)) {        
                    if($s_content==$content) { 
                        $repContent = $this->tpl_replace($repContent); 
                    } 
            }  
            /* 返回替换后的字符串 */ 
 
            return $repContent;                                      
        } 
         
         /**
            内部使用的私有方法,用来将条件语句中使用的变量替换为对应的值
            @param  string  $expr       提供模板中条件语句的开始标记           
           

声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

See all articles

热AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover

AI Clothes Remover

用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool

Undress AI Tool

免费脱衣服图片

Clothoff.io

Clothoff.io

AI脱衣机

AI Hentai Generator

AI Hentai Generator

免费生成ai无尽的。

热门文章

R.E.P.O.能量晶体解释及其做什么(黄色晶体)
2 周前By尊渡假赌尊渡假赌尊渡假赌
仓库:如何复兴队友
1 个月前By尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island冒险:如何获得巨型种子
4 周前By尊渡假赌尊渡假赌尊渡假赌

热工具

Dreamweaver CS6

Dreamweaver CS6

视觉化网页开发工具

禅工作室 13.0.1

禅工作室 13.0.1

功能强大的PHP集成开发环境

EditPlus 中文破解版

EditPlus 中文破解版

体积小,语法高亮,不支持代码提示功能

SublimeText3 英文版

SublimeText3 英文版

推荐:为Win版本,支持代码提示!

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

功能强大的PHP集成开发环境