上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 36 下一页
摘要: 安装 1.克隆下代码后,composer安装 composer install 2.创建key,并创建.env进行相关配置 php artisan key:generate 3.数据库迁移 php artisan migrate 4.添加必要数据 php artisan db:seed 阅读全文
posted @ 2020-09-27 13:43 也许明天 阅读(258) 评论(0) 推荐(0) 编辑
摘要: 问题: E:\phpStudy\PHPTutorial\WWW\laravel03>php artisan migrate PDOException::("SQLSTATE[42000]: Syntax error or access violation: 1071 Specified key wa 阅读全文
posted @ 2020-09-27 13:38 也许明天 阅读(168) 评论(0) 推荐(0) 编辑
摘要: 1.控制器生成: php artisan make:controller TestController <?phpnamespace App\Http\Controllers;use Illuminate\Http\Request;//命名空间的三元素:常量,方法和类class TestContro 阅读全文
posted @ 2020-09-25 15:55 也许明天 阅读(1480) 评论(0) 推荐(0) 编辑
摘要: routes/web.php/*** by lin start: ***/Route::get('/lin', function () { echo "nihao lin";});//1.路由参数 ,可选多个问号{id?}//http://www.laravel02.com/user/111Rout 阅读全文
posted @ 2020-09-25 15:13 也许明天 阅读(698) 评论(0) 推荐(0) 编辑
摘要: use doljoee; 修改订单状态 select order_id,order_status_id from oc_order; select * from oc_order_status;(5是成功订单) UPDATE `oc_order` SET `order_status_id` = '5 阅读全文
posted @ 2020-09-24 12:33 也许明天 阅读(929) 评论(1) 推荐(0) 编辑
摘要: 参考:https://blog.csdn.net/shenenhua/article/details/102544931 第1步:登录 OpenCart 后台,找到 “Extensions” > “Payments”找到“PayPal Express Checkout”,启用它。 第2步:从官网找到 阅读全文
posted @ 2020-09-15 14:38 也许明天 阅读(647) 评论(0) 推荐(0) 编辑
摘要: $json_str = '{ "mid": "e34ed1c2d4", "amount": 254, "currency": "USD", "external_order_id": "11", "order_type": "GTC", "application": "sed", "version": 阅读全文
posted @ 2020-08-25 16:41 也许明天 阅读(547) 评论(0) 推荐(0) 编辑
摘要: 安装composer php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" php -r "if (hash_file('sha384', 'composer-setup.php') 'e5325b19b3 阅读全文
posted @ 2020-07-30 17:58 也许明天 阅读(168) 评论(0) 推荐(0) 编辑
摘要: 将composer的bin目录放到PATH环境变量中 使用composer global config bin-dir --absolute查看composer的bin目录输出类似 Changed current directory to /home/lijun/.config/composer / 阅读全文
posted @ 2020-07-29 13:52 也许明天 阅读(1304) 评论(0) 推荐(0) 编辑
摘要: 使用PYINSTALLER打包多文件和目录的PYTHON项目 使用Pyinstaller打包Python项目包含了大量的坑,这篇文章总结实践得到的Pyinstaller打包经验。本文的例子为Python3.6代码,Pyinstaller3.4,在windows下打包为64位和32位版本。 目录 Py 阅读全文
posted @ 2020-05-08 11:03 也许明天 阅读(2004) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 36 下一页