具体如下: 1>如我们知道开始时间,要加减一个时间,得出一个结果时间,可以用以下代码 $time1='2008-10-1 12:30:30'; echo date('y-m-d h:i:s',strtotime($time1)+30*60);//注意引号内的大小写,分钟是i不是m 执行结果:2008-10-01 13:00:30 2>若我们要计算两个时间的差值,可以用以
时间:2025-01-15  |  阅读:227
一,搭建php环境下载php 5.2.6 源码 并解压编译安装,搭建php环境二,创建扩展项目进入源码目录cd php5.2.6/ext/./ext_skel --extname=my_ext创建名字为my_ext的项目,最终会生成my_ext.so三,更改配置和程序$ vi ext/my_ext/config.m4根据你自己的选择将dnl php_arg_with(my
时间:2025-01-15  |  阅读:325
话不多说,请看代码: function is_idcard( $id ) { $id = strtoupper($id); $regx = "/(^\d{15}$)|(^\d{17}([0-9]|x)$)/"; $arr_split = array(); if(!preg_match($regx, $id)) { return false; } if(15==strlen($id)) //检查15位 { $regx = "/^(\d{6})+(\d{2})+(\d{2})+(\d
时间:2025-01-15  |  阅读:334
本文实例讲述了php+mysql实现从数据库获取下拉树功能。分享给大家供大家参考,具体如下: query($sql); while ($i=$db->fetch_array($result)){ $i["title"] =str_repeat('--',$n).$i["title"]; $arr[] =$i; rootmenu($i["id"],($n+4)); } return $arr; } $arr = rootmenu(0,
时间:2025-01-15  |  阅读:447
thinkphp 模板substr的截取字符串函数 在common/function.php加上以下代码 /** ** 截取中文字符串 **/ function msubstr($str, $start=0, $length, $charset="utf-8", $suffix=true){ if(function_exists("mb_substr")){ $slice= mb_substr($str, $start, $length, $charset)
时间:2025-01-15  |  阅读:244
本文实例讲述了php mysql procedure实现获取多个结果集的方法。分享给大家供大家参考,具体如下: protected function getrs($id) { $db = new mysqli(c("db_host"), c("db_user"), c("db_pwd"), c("db_name"), c("db_port")); if (mysqli_connect_errno()) throw_exception(
时间:2025-01-15  |  阅读:427
本文实例讲述了php7安装redis扩展的方法。分享给大家供大家参考,具体如下: linux中php7安装redis扩展 1.依次执行 wget -c https://github.com/phpredis/phpredis/archive/php7.zip unzip php7.zip cd phpredis-php7 /youpath/phpize ./configure --with-php-config=/youpat
时间:2025-01-15  |  阅读:251
php 缓冲简介 其实我对php ob 系列印象还是很模糊,具体怎么玩的,还不是很了解,平时curd,确实对这些内容没有深入。作为phper 甚是惭愧。网上搜了一通,互相copy,代码运行不能出现作者所描述现象,本文良心出品,代码都是作者运行过。   当执行输出的时候,比如 echo,p
时间:2025-01-15  |  阅读:483
本文实例为大家分享了php实现文件内容操作的分页类,强调一下只针对文件的操作,供大家参考,具体内容如下 file = file_get_contents($file); $this->pagelen = $len; $this->current = isset($_get['page'])?$_get['page']:1; $this->totalpage = $this->gettotalpage()
时间:2025-01-15  |  阅读:329
在php程序中需要用到c代码,应该是下面两种情况: 1 已有c代码,在php程序中想直接用2 由于php的性能问题,需要用c来实现部分功能 针对第一种情况,最合适的方法是用system调用,把现有c代码写成一个独立的程序。参数通过命令行或者标准输入传入,结果从标准输出读出。其次,
时间:2025-01-15  |  阅读:505

Copyright © 2024 LS'Blog-保定PHP程序员老宋个人博客 Inc. 保留所有权利。 Powered by LS'blog 3.0.3

页面耗时0.0210秒, 内存占用1.8 MB, 访问数据库12次

冀ICP备19034377号