摘要:
一、安装与配置 Apache 安装 修改 搜索 追加 A、解压到 D:\ 目录下,命名为 Apache24; B、启动cmd 切换到 Apache 安装目录下的 bin 子目录内;如:D:\Apache24\bin> C、将 httpd.exe 安装为 windows 系统的服务; 如:D:\Apa 阅读全文
摘要:
mb_strlen($str) 获取字符串长度 (中文算一个长度,需要开启mb拓展) strlen ( $str) 获取字符串长度 mb_substr($str, 3, 2) 截取字符串 substr 截取中文会乱码 从第3个下标开始截, 截2个 , 没有第三参则截取到最后, (笔试题一般末尾参数是 阅读全文