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

字號:


    這篇文章主要介紹了PHP中使用file_get_contents post數(shù)據(jù)代碼例子,本文直接給出代碼實例,需要的朋友可以參考下
    廢話不多說,上代碼:
    代碼如下:
    $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
    )
    )));