PHP判断当前时间是否在指定时间段之内/** * 判断当前时间是否在指定时间段之内 * @param integer $a 起始时间 * @param integer $b 结束时间 * @return boolean */ function check_time($a,$b) { $nowtime = time(); $start = strtotime($a.'...
PHP 常用函数 检查图片是不是bases64编码的function is_mobile($tel){ if(preg_match("/^1[345789]{1}\d{9}$/",$tel)){ return true; }else{ return false; } } /* * 检查图片是不是bases64编码...
基于阿里云(万网)域名检测接口<?php $result = whois('WWW.AEINK.COM'); $xml = simplexml_load_string($result); $code = is_register($xml->original); if ($code == 0) { echo '域名可以注册'; } else if ($code == 1) ...
PHP 判断是否 URL 链接一、正则<?phpfunction is_url($url){$r = "/http[s]?:\/\/[\w.]+[\w\/]*[\w.]*\??[\w=&\+\%]*/is"; if(preg_match($r,$url)){ //return true; echo '正确的 url 地址'; }else{ ...
php计算字符串中字符串的出现次数我的问题如下:是否有返回出现次数的字符串函数,例如substr_count(),但带有限制选项?我想计算字符串中 'a' 的出现次数,但在第一个换行符之前。您可以使用substr()withstrpos()获取换行符之前的所有内容,然后使用substr_count()获取出现次数:$text = substr($string, 0, strpos($stri...
我想将一个大文本分成 10 个部分(不知何故相等)。ii 使用此功能:<?php function chunk($msg) { $msg = preg_replace('/[\r\n]+/', ' ', $msg); //define character length of each text piece $chunks = wordwrap($msg, 10000,...
错误解决:message:cURL error 60: SSL certificate problem: unable to get local issuer certificate证书问题如果您的 PHP 环境证书有问题,可能会遇到报错,类似于cURL error 60: See http://curl.haxx.se/libcurl/c/libcurl-errors.html,请尝试按以...
PHP读txt文件 一次随机读一行 function rarray_rand( $arr ){ return mt_rand( 0, count( $arr ) - 1 ); } function varray_rand( $arr ) { return $arr[rarray_rand($arr)]; } $key = file("./key.txt&quo...
一、实验环境 ubuntu、php、apache或nginx、mysql 二、利用Redis锁解决高并发问题,需求 现在有一个接口可能会出现并发量比较大的情况,这个接口使用php写的,做的功能是接收 用户的GET请求中的name字段,然后将这个字段存到mysql中,现在先将数据放到redis的队列中,然后让redis定时将这些数据转移到mysql中。 二、实现步骤 1.新建数据库test及 ...
<?php //连接本地的 Redis 服务 $redis = new Redis(); $redis->connect('127.0.0.1', 6379); echo "Connection to server successfully"; //查看服务是否运行 echo "Server is r...