上一页 1 ··· 5 6 7 8 9 10 下一页
摘要: 中国工商银行ICBC 中国农业银行ABC 中国邮政银行PSBC 中国建设银行CCB 中国银行BOC 交通银行BOCOM DROP TABLE IF EXISTS `bank`; CREATE TABLE `bank` ( `id` int(11) NOT NULL AUTO_INCREMENT, ` 阅读全文
posted @ 2023-12-04 17:05 猝死的路上 阅读(651) 评论(0) 推荐(0)
摘要: 1.用new -> project from exists source 方式,用 maven 方式导入 2.jfinal2.2使用 8.1.8的jetty server,pom使用 compile <dependency> <groupId>com.jfinal</groupId> <artifa 阅读全文
posted @ 2023-12-04 12:00 猝死的路上 阅读(79) 评论(0) 推荐(0)
摘要: 1.查看提交历史 git log commit 4fe5108e0ca86d439f0da61751fac5845ec64f5c 3 commit 38f9efd1f004996330a78c4b78372ba7c3746989 2 commit 5617205b96685ee157b67f3d66 阅读全文
posted @ 2023-11-07 15:54 猝死的路上 阅读(172) 评论(0) 推荐(0)
摘要: 以前调试php都是使用 dump 或者 var_dump 来进行,非常不方便,现在可以使用 phpstorm 来进行动态调试,单步跟踪等,可以更快完成任务, 环境为本地是win10,ip地址为 192.168.0.114 服务器使用虚拟机 centos7 ,ip地址为 192.168.115.120 阅读全文
posted @ 2023-11-07 11:52 猝死的路上 阅读(704) 评论(0) 推荐(0)
摘要: 有自定义功能,但又不想修改原有的api接口,可以添加新的api接口,这样不会很大影响以后的版本升级,具体步骤 1.在 config/routes.php 中添加映射,为了方便维护, 在 $config->routes = $routes; 这一句代码的上面进行添加 //添加的 api $routes 阅读全文
posted @ 2023-11-07 11:13 猝死的路上 阅读(393) 评论(0) 推荐(0)
摘要: 里面的字段实际上是从 product 模块取的,只需要扩展product的config就可以了 在 extension/custom 新建 product/ext/config/test.php 名字随意 <?php $config->product->search['fields']['extra 阅读全文
posted @ 2023-11-01 18:19 猝死的路上 阅读(127) 评论(0) 推荐(0)
摘要: 1.数据库表 zt_story 添加自定义字段 extraNumber 2.扩展 module 下的 story 扩展config 在 extension/custom 新建 story/ext/config/test.php (名字随意),内容 <?php $config->story->data 阅读全文
posted @ 2023-11-01 18:16 猝死的路上 阅读(668) 评论(1) 推荐(0)
摘要: server { listen 80; #填写证书绑定的域名 server_name <yourdomain>; #将所有HTTP请求通过rewrite指令重定向到HTTPS。 rewrite ^(.*)$ https://$host$1; location / { index index.html 阅读全文
posted @ 2023-11-01 18:07 猝死的路上 阅读(106) 评论(0) 推荐(0)
摘要: white-space:nowrap;让文本不换行 overflow:hidden 溢出的部份隐藏 text-overflow:ellipsis; 多余的部份用...展示 浮动清理 ::after { content:""; display:block; clear:both; } 阅读全文
posted @ 2023-11-01 18:06 猝死的路上 阅读(34) 评论(0) 推荐(0)
摘要: 如何安装php-ffmpeg 删除 putenv涵数 首先项目根目录运行 composer require php-ffmpeg/php-ffmpeg 然后系统安装 ffmpeg 宝塔安装 wget http://download.bt.cn/install/ext/ffmpeg.sh && sh 阅读全文
posted @ 2023-11-01 18:04 猝死的路上 阅读(531) 评论(0) 推荐(0)
上一页 1 ··· 5 6 7 8 9 10 下一页