
php
一切终将结束
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
php 大量数导出表格 打包成zip
导出表格后打包成zip。extend\fast\Export.php<?phpnamespace fast;use think\db\Query;use think\Exception;/** 示例: $model = $model->where()->select(false); $count = $model->where()->count; $export = new Expor.原创 2020-09-19 14:10:14 · 494 阅读 · 0 评论 -
phpstorm连接本地虚拟主机(virtualbox)
123,4,原创 2019-04-08 13:13:31 · 948 阅读 · 0 评论 -
phpstorm使用文档
https://www.kancloud.cn/ervinhua/phpstorm/441791原创 2018-12-29 14:56:00 · 673 阅读 · 0 评论 -
laravel,vue学习不知道多少天了基础知识
目录laravel安装laravel xdebug不进入调试laravel安装命令:larverl new Project 没有vendorcomposer create-project --prefer-dist laravel/laravel blog "5.5.*"laravel xdebug不进入调试artisan serv 启动不进入调试模式,实在找不出来啥问...原创 2018-12-18 15:13:02 · 631 阅读 · 0 评论 -
laravel migration文件中,链式语句代码不提示
安装ideHelp"barryvdh/laravel-ide-helper": "dev-master", "doctrine/dbal": "~2.3" composer update php artisan ide-helper:generate链式语句代码不提示1.命令vendor:publish导出 Barryvdh\LaravelIdeHelper\IdeHelpe...原创 2018-12-26 14:05:41 · 355 阅读 · 0 评论 -
laravel,vue学习不知道多少天了基础知识
目录1,vue 自动编译2,vue 编译报错如下3,laravel创建测试数据4,laravel中使用pusher5,vue中的表单6,laravel migrate7,laravel 主外键1,vue 自动编译npm run watch2,vue 编译报错如下Component template should contain exactly one r...原创 2018-12-13 11:47:12 · 1017 阅读 · 0 评论 -
composer package list
https://packagist.org/原创 2018-12-04 14:29:16 · 990 阅读 · 0 评论 -
phpstorm + xdebug php.ini 配置
xdebug.idekey=PhpStormxdebug.remote_enable = Onxdebug.remote_host=localhostxdebug.remote_port=9001xdebug.remote_handler=dbgpxdebug.profiler_output_dir="E:\phpStudy\tmp\xdebug"xdebug.trace_output...原创 2018-08-17 09:58:43 · 424 阅读 · 0 评论 -
php yield 的作用
function createRange($number){ for($i=0;$i<$number;$i++){ yield time(); }}$result = createRange(10); // 这里调用上面我们创建的函数foreach($result as $value){ sleep(1); echo $value.'&...转载 2018-04-26 17:00:50 · 964 阅读 · 0 评论 -
php 接收curl json xml 及解析xml
$json = file_get_contents("php://input");$list = json_decode($json, true);$SysNo=$list['SysNo'];$aaa = file_get_contents('C:\Users\Administrator\Desktop\notify.xml');$str = str_replace("\n", "", $...原创 2018-05-03 10:52:11 · 1094 阅读 · 0 评论