摘要: 参考 https://blog.csdn.net/chen_cong_520/article/details/134638717 #cd /usr/local #wget https://www.nasm.us/pub/nasm/releasebuilds/2.16/nasm-2.16.tar.gz 阅读全文
posted @ 2024-04-04 19:19 tochenwei 阅读(200) 评论(1) 推荐(0) 编辑
摘要: 订单表xfc_order DROP TABLE IF EXISTS `xfc_order`; CREATE TABLE `xfc_order` ( `order_id` int(11) unsigned NOT NULL AUTO_INCREMENT, `order_code` varchar(32 阅读全文
posted @ 2024-03-22 13:32 tochenwei 阅读(22) 评论(0) 推荐(0) 编辑
摘要: #cd /usr/local #yum -y groupinstall "Development tools" #yum -y install zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-devel 阅读全文
posted @ 2024-03-03 17:38 tochenwei 阅读(231) 评论(0) 推荐(0) 编辑
摘要: #cd /usr/local #yum -y groupinstall "Development tools" #yum -y install zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-devel 阅读全文
posted @ 2024-03-02 22:02 tochenwei 阅读(416) 评论(0) 推荐(0) 编辑
摘要: #yum install tcl-devel libpng-devel libjpeg-devel bzip2-devel freetype-devel libtiff-devel ghostscript-devel#yum -y install ImageMagick#yum -y install 阅读全文
posted @ 2024-02-21 01:52 tochenwei 阅读(112) 评论(0) 推荐(0) 编辑
摘要: convert 20240220220452.jpg -channel rgba -matte -fuzz 10% -fill "rgba(255,255,255,0.5)" -opaque "rgb(255,255,255)" semi_transparent_20240220220452.png 阅读全文
posted @ 2024-02-21 01:51 tochenwei 阅读(63) 评论(0) 推荐(0) 编辑
摘要: 该方法返回的是一个bool值 package main import "regexp" import "fmt" // 正则过滤sql注入的方法 // 参数 : 要匹配的语句 func FilteredSQLInject(to_match_str string) bool { //过滤 ‘ //OR 阅读全文
posted @ 2024-01-31 17:31 tochenwei 阅读(85) 评论(0) 推荐(0) 编辑
摘要: #unzip swoole-v4.8.13.zip#cd swoole-v4.8.13#/usr/local/php/bin/phpize#./configure --with-php-config=/usr/local/php/bin/php-config#make && make install 阅读全文
posted @ 2024-01-22 23:59 tochenwei 阅读(97) 评论(0) 推荐(0) 编辑
摘要: #wget https://xdebug.org/files/xdebug-3.2.2.tgz#tar -xvzf xdebug-3.2.2.tgz#cd xdebug-3.2.2 #/usr/local/php/bin/phpize#./configure -enable-xdebug --wit 阅读全文
posted @ 2024-01-22 23:14 tochenwei 阅读(178) 评论(0) 推荐(0) 编辑
摘要: 整个执行的思路: 1 先放弃服务器本地的修改,把代码从git管理服务器检出,最新的代码。 2 复制配置测试或生产环境配置文件到工程里面。 3 文件夹的权限重新覆盖。 比如把下面这段bash 脚本命名为test_shop.sh,赋予它可执行的权限。 chmod a+x test_shop.sh #!/ 阅读全文
posted @ 2024-01-12 11:17 tochenwei 阅读(3) 评论(0) 推荐(0) 编辑