摘要:
https://blog.csdn.net/quickzhao3223/article/details/80988797 阅读全文
摘要:
https://blog.csdn.net/sinat_26342009/article/details/56480767 阅读全文
摘要:
一、安装与配置 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个 , 没有第三参则截取到最后, (笔试题一般末尾参数是 阅读全文
摘要:
WIN7 环境下搭建 PHP7(64 位)操作步骤 一、安装与配置 Apache 1、下载 Apache下载地址:https://www.apachelounge.com/download/ 2、安装 ApacheA、将压缩包解压到 D:\ 目录下,并且命名为 Apache24; B、启动 Wind 阅读全文
摘要:
use Illuminate\Http\Request; function fun(Request $request){ //获取修改的数据 $arr = $request->all(); //清空令牌 unset($arr['_token']); //清空前台穿过来的id unset($arr['id']); } 阅读全文
摘要:
API 接口返回值 https://blog.csdn.net/baple/article/details/52925772 阅读全文
摘要:
序列化serialize($array) 反序列化 unserialize 阅读全文
摘要:
cookie 和 session 阅读全文
摘要:
document.getElementById('ECS_FORMBUY').submit(); 阅读全文