摘要:
goland2022版本安装指导: https://www.cnblogs.com/zyfeng/p/17127613.html 阅读全文
摘要:
1、修改phpstorm的php language level步骤: 点击php language level右边的?按钮,在弹出的窗口中点击 【show settings】, 去掉默认勾选的【Synchroize IDE Settings with composer.json】, 回到原页面,此时 阅读全文
摘要:
【phpstudyV8】配置laravel5环境,网站伪静态需要配置,否则访问不了 location / { if (!-e $request_filename){ rewrite ^/(.*)$ /index.php/$1 last; } } 阅读全文
摘要:
1、php基础:记php正则约束输入汉字、字母、数字过滤表达式 if (! preg_match('/^[\x7f-\xffa-zA-Z0-9]{1,40}$/', $short_name)) { //S::error(70179); return '简称在13个汉字或40个数字、英文内'; } 阅读全文
摘要:
1、docker中安装es7.7.0,不要再宿主机直接安装,随带提一句:docker真香! 参考文章:https://blog.csdn.net/qq_40942490/article/details/111594267 2、laravel安装es扩展&使用 参考文章:https://www.cnb 阅读全文
摘要:
https://blog.csdn.net/raoxiaoya/article/details/107718941 阅读全文
摘要:
1、记一次与java和C# 对接DES加解密工程; 2、主要是用到DES的相关加密方案,链接:https://docs.mallcoo.cn/PosPoints/APIDoc_OPlatform.html 3、本次用到的DES 加密方案是:DES_MODE = "DES/ECB/NoPadding" 阅读全文
摘要:
updated_at:2025-03-03 phpstorm2021最新破解版,https://www.yutu.cn/softhtml/showsoft_6111.html tips:安装包放在U盘,以后再用。 1、网上一堆各种教程,安装个phpstorm我投都大了,一般提供激活码的都是不行的,过 阅读全文
摘要:
1、如题:因为测试docker只开发了80端口,现在想打开8090端口 2、解决: 参考一:https://www.cnblogs.com/Hellowshuo/p/13893436.html 参考二:https://blog.csdn.net/u012760564/article/details/ 阅读全文
摘要:
1、宿主机(或外部ip)访问docker服务 和 docker内访问宿主机服务,两种方式均以redis服务为例。 2、docker访问宿主机redis服务: docker怎么访问宿主中redis服务6379端口:https://blog.csdn.net/weixin_37281289/articl 阅读全文