
php
Hpatron
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
php学习-本地配置虚拟域名
集成环境phpstudy Apache+php5.4 Apache配置虚拟域名首先是在httpd-conf里注释掉 #Include conf/extra/httpd-vhosts.conf 打开vhost-conf <VirtualHost *:80> ServerAdmin admin@phpStudy.net DocumentRoot "根目录" S...原创 2018-07-20 15:43:08 · 280 阅读 · 0 评论 -
think php接收请求数组参数注意事项
前端用的fetch,刚开始Content-Type填的是application/x-www-form-urlencoded 这种时候请求要传数组参数需要把键设置为xx[]的形式(键名+[]),php里用request()->post('xx/a')取得,键名(不带[])加/a表示转换成数组。 后来要传更复杂的对象数组,发现对象数组编码成表单参数会错,对象全部变成null,所以改用appl...原创 2018-08-09 15:59:42 · 2781 阅读 · 0 评论