Skip to content

Instantly share code, notes, and snippets.

@dejanbatanjac
Last active August 10, 2018 10:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dejanbatanjac/d4482ec4491a0920b01f4775064eea16 to your computer and use it in GitHub Desktop.
Save dejanbatanjac/d4482ec4491a0920b01f4775064eea16 to your computer and use it in GitHub Desktop.
$con = file_get_contents('https://pixabay.com/get/e833b2062df6093ed95c4518b74f4791e27ee4d004b0154696f5c070a4eeb2_640.jpg');
if(strlen($con)>0){
echo "hurray, we can get " . strlen($con) . " bytes from https://pixabay.com/get/e833b2062df6093ed95c4518b74f4791e27ee4d004b0154696f5c070a4eeb2_640.jpg";
}else{
echo "file_get_contents() PHP not working, we can get 0 (read:zero) bytes from https://pixabay.com/get/e833b2062df6093ed95c4518b74f4791e27ee4d004b0154696f5c070a4eeb2_640.jpg. This means we cannot read files";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment