php学习
phpLara
这个作者很懒,什么都没留下…
展开
-
php简单分页类
才学习php没多久,结合网上整理了一套实用的分页类,代码献上mypage.php: div.page{ text-align: center; } div.content_2{ height: 300px; margin-top: 20px; } div.page a{ text-decor原创 2017-07-01 21:47:30 · 527 阅读 · 0 评论 -
curl传输神器
本来之前学过curl,但是参数设置一直不清楚还有就是第一次面试时,面试官给我的就是从url中获取xm中的数据。当时我采用的是file_get_contents()获取页面内容,面试官问我是否有其他方式时我没答出来,现在想来curl不就是干这个吗?当时真没想到curl可以实现。肠子都悔青了。可能就是因为这个没通过。现在准备好好整理一下。默认是get方式post方式当请求https的数据时原创 2017-07-01 21:47:37 · 426 阅读 · 0 评论 -
php异步上传文件
<form class="upload_pic_wrap" name="registerPerFrom" target="upload_file" enctype="multipart/form-data" method="POST" action="<?=UrlService::buildWeb("/upload/pic");?>"> <div class="upload_wrap pul原创 2017-11-15 13:32:28 · 514 阅读 · 0 评论 -
laravel 用数据库实现消息队列
.env修改配置QUEUE_DRIVER=database执行命令行:php artisan queue:tablephp artisan migrate创建jobs表 然后创建一个任务:php artisan make:job SendMessageSendMessage.php代码如下:<?phpnamespace App\Jobs;use...原创 2018-08-25 18:17:53 · 1797 阅读 · 0 评论 -
PHP重置数组为连续数字索引的几种方式
转载:原地址原创 2018-09-18 20:41:05 · 1026 阅读 · 0 评论