Skip to content

Instantly share code, notes, and snippets.

@abenevaut
Created December 13, 2025 13:57
Show Gist options
  • Select an option

  • Save abenevaut/7dad00cc6eb50e254d18ba58df6a2903 to your computer and use it in GitHub Desktop.

Select an option

Save abenevaut/7dad00cc6eb50e254d18ba58df6a2903 to your computer and use it in GitHub Desktop.
`php main.php`
#!/usr/bin/env php
<?php
function main(): int
{
try {
// do stuff
}
catch (\Throwable $exception) {
echo $exception->getMessage() . PHP_EOL;
return 1;
}
return 0;
}
if (php_sapi_name() === 'cli') {
exit(main());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment