Skip to main content
PHP

PHP: Try/Catch

Does the try-catch block continue execution after the catch? try { throw new Exception (1); } catch (Exception $exception) { echo "gotcha!"; } echo "what…
priyankmaniar
September 2, 2021
PHP

PHPDocumentor

Download the PHAR from their website. This is the easiest method to start with and works perfectly. php ~/phpDocumentor.phar -d . -t docs I found…
priyankmaniar
July 21, 2019