qxandxt

导航

09 2019 档案

Laravel 操作指令
摘要:php artisan migrate —path=database/migrations/v1 更新表数据 php artisan make:migration create_channels_table —path=database/migrations/v1 新增表 php artisan m 阅读全文

posted @ 2019-09-06 13:42 qxandxt 阅读(142) 评论(0) 推荐(0)

php 查看接口运行时间
摘要:<?php $start_time = microtime(true); for ($i=0;$i<100000000;$i++){}; $end_time = microtime(true); echo '循环执行时间为:'.($end_time-$start_time).' s'; 阅读全文

posted @ 2019-09-05 14:58 qxandxt 阅读(886) 评论(0) 推荐(0)