亚洲免费乱码视频,日韩 欧美 国产 动漫 一区,97在线观看免费视频播国产,中文字幕亚洲图片

      1. <legend id="ppnor"></legend>

      2. 
        
        <sup id="ppnor"><input id="ppnor"></input></sup>
        <s id="ppnor"></s>

        PHP中使用file_get_contents post數(shù)據(jù)代碼例子

        字號(hào):


            這篇文章主要介紹了PHP中使用file_get_contents post數(shù)據(jù)代碼例子,本文直接給出代碼實(shí)例,需要的朋友可以參考下
            廢話不多說,上代碼:
            代碼如下:
            $data = array(
            'name' => 'Joe',
            'website' => 'www.jb51.net'
            );
            $data = http_build_query($data);
            $data = json_encode($data);
            $json = file_get_contents($url, 0, stream_context_create(array(
            'http' => array(
            'timeout' => 30,
            'method' => 'POST',
            'content' => $data
            )
            )));