Created
October 9, 2019 08:34
-
-
Save rajvanshipradeep15/f3ad4f8fa7bd7603c87e8e3c6fc1222d to your computer and use it in GitHub Desktop.
php file_get_contents
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$arrContextOptions=array( | |
"ssl"=>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; ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment