Skip to content

Instantly share code, notes, and snippets.

@piscisaureus
Created November 20, 2012 23:40
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 piscisaureus/4122038 to your computer and use it in GitHub Desktop.
Save piscisaureus/4122038 to your computer and use it in GitHub Desktop.
piscisaureus@test:~/334240 (master) $ cat bla
bla
piscisaureus@test:~/334240 (master) $ cat test.php
<?php
var_dump(file_get_contents("bla"));
var_dump(file_get_contents("bla\0bar"));
?>
piscisaureus@test:~/334240 (master) $ php test.php
string(4) "bla
"
string(4) "bla
"
piscisaureus@test:~/334240 (master) $
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment