前台getshell https://cloud.tencent.com/developer/article/1690304 /index.php/api/Uploadify/preview data:image/php;base64,PD9waHAgcGhwaW5mbygpOw== 后台登陆后ge ...
分类:
其他好文 时间:
2021-03-17 14:10:34
阅读次数:
0
1. hscale 2. vscale static void yuv2p010cX_c(SwsContext *c, const int16_t *chrFilter, int chrFilterSize, const int16_t **chrUSrc, const int16_t **chrV ...
分类:
其他好文 时间:
2021-03-17 14:06:46
阅读次数:
0
删除原来的版本 rm -f /usr/bin/php 引用你想要的版本 ln -sf /www/server/php/74/bin/php /usr/bin/php ln命令用来为文件创建连接,连接类型分为硬连接和符号连接两种,默认的连接类型是硬连接。如果要创建符号连接必须使用"-s"选项。注意:符 ...
分类:
Web程序 时间:
2021-03-16 14:09:10
阅读次数:
0
类型转换 public class 类的转换 { public static void main(String[] args) {? /*类型转换 低 高 byte,short,char-int-long-float-double 高到低强制转换,低到高自动转换 */? //强制转换? int a ...
分类:
其他好文 时间:
2021-03-16 14:07:25
阅读次数:
0
正则表达式验证double类型的数字: public class ValidateRegexs { /// <summary> /// 文本验证,[匹配数字],正则表达式 /// 涵盖:整数、小数、正负数,最大9位 /// </summary> public static string Textbo ...
php socket 读取缓存区域 <?php //创建socket套接字 $socket = socket_create(AF_INET, SOCK_STREAM, SOL_TCP); //设置阻塞模式 socket_set_block($socket); //为套接字绑定ip和端口 socket ...
分类:
Web程序 时间:
2021-03-16 13:58:08
阅读次数:
0
1.首先要明确504错误是nginx配置问题,所以调试php等其他配置是木有用的.这样目标已经缩小很多了. 2.其次, 明确这个nginx是做什么, 一般有两种: a. 只是将请求代理转发, 在配置我们能看到proxy_pass ip 字眼 b. 将请求通过fastcgi转发给php-fpm, 在配 ...
分类:
其他好文 时间:
2021-03-16 13:38:08
阅读次数:
0
static/js/xxxx.js 这里定义按钮odoo.define('add.tree.view.buttons', function (require) { "use strict"; var core = require('web.core'); var ListController = r ...
分类:
其他好文 时间:
2021-03-16 13:30:43
阅读次数:
0
冒泡排序 1.动图演示 2.代码实现 private static void bubbleSort(int[] arr) { if (arr.length <= 1) return; for (int i = 0; i < arr.length; i++) { // 用于标识数组是否有序 boole ...
分类:
编程语言 时间:
2021-03-16 13:24:13
阅读次数:
0
Java基础语法 标识 单行标注 // 多行标注 /* */ 多做标注 关键字 public class Demo02 { public static void main(String[] args) { String ab="c"; System.out.print(ab); } } 注意语法中符 ...
分类:
编程语言 时间:
2021-03-16 11:57:10
阅读次数:
0