摘要:
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" 阅读全文
摘要:
tips:安装包放在U盘,以后再用。 1、网上一堆各种教程,安装个phpstorm我投都大了,一般提供激活码的都是不行的,过期。 2、使用破解版成功实现 phpstorm201922版本永久有效,可以使用。 3、教程: https://www.anxz.com/down/48725.html 破解方 阅读全文
摘要:
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 阅读全文
摘要:
背景:linux服务器已经安装了lnmp1.5的包,里面带了php7.1版本,一直再跑; 现在想学点swoole,要求PHP>=7.2,所以准备自己再装个php7.4的版本,玩起来。(未使用docker安装,推荐docker更简单)0--花一天时间已完成hyperf2.1安装和调试,跑起来了。 cl 阅读全文