2020-01

curl的get和post的使用方法

2020-01-08
get: ```php public function get_curl(){ $url = ""; $parameter = array(); $ch = curl_init(); //设置选项,包括URL curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_R.....

js iframe的宽度实现自适应的方法

2020-01-03
我是以宽度600为判断的标准: ```javascript function autoWidth(){ var w=window.outerWidth; if(w.....