Skip to content

Instantly share code, notes, and snippets.

@Liroo
Last active March 9, 2017 04:52
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 Liroo/ff3ea6a438a1180f5f11ca4e43b17903 to your computer and use it in GitHub Desktop.
Save Liroo/ff3ea6a438a1180f5f11ca4e43b17903 to your computer and use it in GitHub Desktop.
test
<?php
$descFic = fopen ("/etc/passwd", "r");
while ($ligne = fread ($descFic, filesize("/etc/passwd")))
{
echo $ligne;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment