<?php /** * Created by PhpStorm. * User: Xiny i@xiny9.com https://xbug.t...
function post($url, $data){//file_get_content $opts = array('http' => array( 'method' => 'POST', 'header' => array ('Content-type: application/x-www-form-urlencode...
一.通过php curl<?php function curlPost($url,$params) { $postData = ''; ...
使用file_get_contents获取http内容,返回false,链接没问题,排查file_get_contents错误<?php set_error_handler( create_function( '$severity, $message, $file, $line', 'throw new ErrorException($messa...
在使用PHP开发Web应用的中,很多的应用都会要求用户注册,而注册的时候就需要我们对用户的信息进行处理了,最常见的莫过于就是邮箱和密码了,本文意在讨论对密码的处理:也就是对密码的加密处理。MD5相信很多PHP开发者在最先接触PHP的时候,处理密码的首选加密函数可能就是MD5了,我当时就是这样的:$password = md5($_POST["password"]);上面这...