输出数组中的当前元素和最后一个元素的值: 定义和用法 end() 函数将内部指针指向数组中的最后一个元素,并输出。 相关的方法: current() - 返回数组中的当前元素的值。 next() - ...
php中strpos(), stripos(),strrpos(), strripos()的区别
作用: 1.判断某个字符串在另一个字符串中的位置 2.判断某个字符串是否包含一个字符串 strpos($str,$char), 左边开始,符出现的位置,区分大小写; stripos($str,$cha...
Sql模糊查询(like)区分大小写
1、查询小写字母相关数据 SELECT * FROM address WHERE district LIKE '%m%' 2、查询大写字母相关数据 SELECT * FROM address WHER...
出现错误”Init: Session Cache is not configured [hint: SSLSessionCache]”的解决方法
解决方法 找到并打开文件httpd.conf find / -name httpd.conf 找到下面这句话,并删除前面的注释符,如果没有找到,那么添加这一行: LoadModule socache_...
RROR: An another FPM instance seems to already listen on /tmp/php-cgi.sock
ERROR: An another FPM instance seems to already listen on /tmp/php-cgi.sock 1.check php-fpm process ...
$b = rtrim(join(‘,’,array_unique(explode(‘,’,$a))), “,”);去除字符串中重复的字符
把里面相同的排除掉一个 $b = rtrim(join(',',array_unique(explode(',',$a))), ","); 解读: $a是字符串 比如 $a = "'你好','你好啊'...