📌  相关文章
📜  php file_get_contents 禁用 ssl 检查 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:53:52.230000             🧑  作者: Mango

代码示例1
array(
        "verify_peer"=>false,
        "verify_peer_name"=>false,
    ),
);  

$response = file_get_contents("https://maps.co.weber.ut.us/arcgis/rest/services/SDE_composite_locator/GeocodeServer/findAddressCandidates?Street=&SingleLine=3042+N+1050+W&outFields=*&outSR=102100&searchExtent=&f=json", false, stream_context_create($arrContextOptions));

echo $response; ?>