<?php // clearDir('upload/images/'); if ($_FILES['file']['error'] == 0) { $MAX_FILE_SIZE = 300000; if ($_FILES['file']['size'] > $MAX_FILE_SIZE) { exi ...
分类:
Web程序 时间:
2020-07-26 00:34:37
阅读次数:
73
HTTP 常见状态码 一、200 [ok] 一切正常 二、400 [Bad Request] 客户端 出现问题 需要注意:前端传入的参数与后台接收数据时的 参数名 必须保持一致 三、500 [Internal Server Error] 服务端 出现问题 四、301 [Moved Permanent ...
分类:
Web程序 时间:
2020-07-26 00:25:17
阅读次数:
95
删除代理即可。 具体操作如下: 1. git config --global --list 查看git配置 发现其中有 http.https.XXXXXX.proxy 和 https.https.XXXXXX.proxy配置 2.git config --global --unset http.ht ...
分类:
其他好文 时间:
2020-07-26 00:07:03
阅读次数:
249
#1.run 1.下载附件解压得到run.exe,运行发现是word,显示error!!。直接解压run.exe,得到New Microsoft Word Document.docx和run.exe。运行run.exe,得到tif文件,查看二进制,在最后发现run->njCp1HJBPLVTxcMh ...
分类:
其他好文 时间:
2020-07-25 11:28:14
阅读次数:
108
新导入的idea项目,发现竟然找不到包,类,程序包不存在。 上网上找了好多博客发现都不能用 最后解决了问题,只要把maven清除一下就解决了 如图: 然后点击图上的绿色箭头 再运行即可 加油哦 ...
分类:
编程语言 时间:
2020-07-24 22:08:09
阅读次数:
82
问题: An error occured while deploying the file. This probably means that the app contains ARM native code and your Genymotion device cannot run ARM ins ...
分类:
移动开发 时间:
2020-07-24 22:03:36
阅读次数:
160
【RN小记】解决Mac下Pod install 缓慢 或 error: RPC failed; 或 the remote end hung up unexpectedly
分类:
系统相关 时间:
2020-07-24 21:33:52
阅读次数:
174
代码: #include <stdio.h> #include "stdlib.h" //宏定义 #define TRUE 1 #define FALSE 0 #define OK 1 #define ERROR 0 #define MAXSTRLEN 100 typedef char SStrin ...
分类:
编程语言 时间:
2020-07-24 21:17:25
阅读次数:
74
一:RabbitMQ简介 AMQP,即Advanced Message Queuing Protocol,高级消息队列协议,是应用层协议的一个开放标准,为面向消息的中间件设计。消息中间件主要用于组件之间的解耦,消息的发送者无需知道消息使用者的存在,反之亦然。AMQP的主要特征是面向消息、队列、路由( ...
《数据结构与算法分析C语言描述》-第二版 ###1.插入排序 插入排序由N-1趟排序组成,第P趟排序之前,前P个元素已经排好序。第P趟排序时,前P个元素中大于第P+1个元素的数全部右移一位,然后将第P+1个元素插入对应的位置。 插入排序的时间复杂度为$O(N^2)$。 void InsertionS ...
分类:
编程语言 时间:
2020-07-24 16:52:27
阅读次数:
66