Skip to content

Instantly share code, notes, and snippets.

@th4s1s
Created August 30, 2023 06:19
Show Gist options
  • Select an option

  • Save th4s1s/d091528ac8dc251cadf5f1a2d9afdfce to your computer and use it in GitHub Desktop.

Select an option

Save th4s1s/d091528ac8dc251cadf5f1a2d9afdfce to your computer and use it in GitHub Desktop.
<?php
$filename = 'index.php';
$fileContent = file_get_contents($filename);
if ($fileContent !== false) {
echo $fileContent;
} else {
echo "Failed to read the file.";
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment