国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 語言 > PHP > 正文

php中file_get_contents代替使用curl示例

2024-09-04 11:49:09
字體:
來源:轉載
供稿:網友

file_get_contents代替使用curl其實不多見了,但有時你碰到服務器不支持curl時我們可以使用file_get_contents代替使用curl了,下面看個例子.

當用盡一切辦法發現 服務器真的無法使用curl時,或者curl不支持https時,curl https 出現502時,你又不想重裝網站環境.

那你就改用file_get_contents 代替吧,curl 經常使用的 curl get curl post,curl get 替代 直接用file_get_contents($url) 就可以了.

curl post 替代,代碼如下:

  1. function Post($url$post = null) {        
  2.         $content = http_build_query($post); 
  3.         $content_length = strlen($content); 
  4.         $options = array//開源軟件:Vevb.com 
  5.             'http' => array
  6.                 'method' => 'POST'
  7.                 'header' =>"Content-type: application/x-www-form-urlencoded"
  8.                 'content' => $post 
  9.             ) 
  10.         ); 
  11.         return file_get_contents($url, false, stream_context_create($options)); 
  12. }

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 陇川县| 稻城县| 海南省| 达州市| 香格里拉县| 天台县| 东乡| 德庆县| 平泉县| 天等县| 法库县| 彭州市| 泽普县| 新田县| 封开县| 西乌珠穆沁旗| 千阳县| 星子县| 容城县| 尼木县| 沅陵县| 本溪| 武平县| 台北县| 广南县| 图们市| 舟山市| 库车县| 古交市| 浪卡子县| 石景山区| 博客| 临湘市| 探索| 巴塘县| 麻城市| 南安市| 农安县| 凤山县| 大厂| 华亭县|