国产成人毛片视频|星空传媒久草视频|欧美激情草久视频|久久久久女女|久操超碰在线播放|亚洲强奸一区二区|五月天丁香社区在线|色婷婷成人丁香网|午夜欧美6666|纯肉无码91视频

php調(diào)用第三方api接口 PHP可以開發(fā)APP嗎?

PHP可以開發(fā)APP嗎?PHP是WEB后端語言,最好用于APP的后端數(shù)據(jù)接口編寫。當(dāng)然,也可用html php混合寫web程序,最后封裝成web app,但性能不如原生app。PHP如何調(diào)用API接口

PHP可以開發(fā)APP嗎?

PHP是WEB后端語言,最好用于APP的后端數(shù)據(jù)接口編寫。當(dāng)然,也可用html php混合寫web程序,最后封裝成web app,但性能不如原生app。

PHP如何調(diào)用API接口?

通過php模擬post請求即可調(diào)用。

php 模擬POST提交的方法:

通過curl函數(shù)

Php代碼:

  1. $post_data = array()

  2. $post_data["clientname"] = "test08"

  3. $post_data["clientpasswd"] = "test08"

  4. $post_data["submit"] = "submit"

  5. $url="

    http://xxx.xxx.xxx.xx/xx/xxx/top.php"

  6. $o=""

  7. foreach ($post_data as $k=>$v)

  8. {

  9. $o.= "$k=".urlencode($v)."&"

  10. }

  11. $post_data=substr($o,0,-1)

  12. $ch = curl_init()

  13. curl_setopt($ch, CURLOPT_POST, 1)

  14. curl_setopt($ch, CURLOPT_HEADER, 0)

  15. curl_setopt($ch, CURLOPT_URL,$url)

  16. //為了支持cookie

  17. curl_setopt($ch, CURLOPT_COOKIEJAR, "cookie.txt")

  18. curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data)

  19. $result = curl_exec($ch)