Tuesday 29 October 2019

PHP Fatal error: Namespace declaration statement has to be the very first statement in the script in

// whitespace
<?php
    namespace HelloWorld
?>
Remove the white space before your php tag starts
<?php
    namespace HelloWorld
?>

https://stackoverflow.com/questions/21433086/fatal-error-namespace-declaration-statement-has-to-be-the-very-first-statement

No comments:

Post a Comment