摘要: des和aes解密 加密方式: DES AES 密... 阅读全文
posted @ 2019-08-09 17:44 码农编程进阶笔记 阅读(43) 评论(0) 推荐(0)
摘要: <?php $raw = file_get_contents('php://input'); if(!empty($raw)) { parse_str($raw);//解析到当前作用域 if (!empty($method) && !empty($password) && !empty($encodetext)) { $method = trim($method); $password = tri 阅读全文
posted @ 2019-08-09 17:44 码农编程进阶笔记 阅读(423) 评论(0) 推荐(0)
摘要: $data = file_get_contents("php://input"); php://input 是个可以访问请求的原始数据的只读流。 POST 请求的情况下,最好使用 php://input 来代替 $HTTP_RAW_PO... 阅读全文
posted @ 2019-08-09 17:24 码农编程进阶笔记 阅读(346) 评论(0) 推荐(0)
摘要: $data = file_get_contents("php://input"); php://input 是个可以访问请求的原始数据的只读流。 POST 请求的情况下,最好使用 php://input 来代替 $HTTP_RAW_POST_DATA,因为它不依赖于特定的 php.ini 指令。 而 阅读全文
posted @ 2019-08-09 17:24 码农编程进阶笔记 阅读(956) 评论(0) 推荐(0)
摘要: <?php/** *Recieve p_w_picpath data **/error_reporting(E_ALL);function get_contents(){ $xmlstr = file_get_contents("php://i... 阅读全文
posted @ 2019-08-09 17:14 码农编程进阶笔记 阅读(52) 评论(0) 推荐(0)
摘要: <?php /** *Recieve p_w_picpath data **/ error_reporting(E_ALL); function get_contents() { $xmlstr = file_get_contents("php://input"); $filename = time() . '.png'; if (file_put_contents($filename, $xml 阅读全文
posted @ 2019-08-09 17:14 码农编程进阶笔记 阅读(1529) 评论(0) 推荐(0)
返回顶部 有事您Q我