Website maintenance

PHP error "unexpected end of file

Table of contents

With many a WordPress project, you find yourself in the situation of designing your own templates. WordPress templates are typical representatives of the old PHP school, according to which PHP is already its own template engine and thus form a hybrid of HTML and PHP instructions. This is more or less how PHP came into being. In the meantime, PHP and HTML code are separated by additional template engines such as the oldie but goldie Smarty or Twig and Blade (Laravel), which makes sense for larger projects, especially for reasons of reusability, but also clarity of the project. Nevertheless, WordPress does without template engines and leaves the separation of logic and presentation to the developer. The result is, for example, code expressions of the form:

"Unfortunately", however, the short version usually works too, by replacing <?php with <?, thus:

Many Apache web servers will dutifully execute the code at this point. This is because in the PHP.ini the configuration variable "short_open_tag" the value "On"which allows the execution of this syntax. However, it becomes problematic if the PHP version has the value "Off". At this point there will be a fatal error, for example:

"PHP Parse error: syntax error, unexpected end of file in ..."

The problem is that many development environments, such as "MAMP", allow the short notation by default. On the hoster's production server, this can lead to unpleasant surprises - and anyone who often works with WordPress knows that debugging is not necessarily one of the strengths of this CMS.

Developers who use PHPStorm, for example, can tick the option "Short Open Tag Usage" in Inspections > PHP > Code Style and will then receive a corresponding warning during development:

Happy WordPress Coding!

One more hint: Most likely you will not see the error message on the screen, but instead simply a white screen of death will be displayed. However, you will find such a message somewhere in the error logs of your hoster. Pay attention to the PHP files that you have modified or created.

 

See also

More on this topic

Help, my Firefox, Chrome, Safari, Edge is showing me old or broken content....

After changes have been made as part of website maintenance, we often receive feedback from customers such as "Everything still looks the same as before" or "But now the website is completely broken!" What's going on...

To the article...

Sequence for WordPress updates

For the secure operation of a Wordpress site, it is necessary to regularly update both the basic system and the extensions. For reasons of operational safety, it is advisable to follow a certain sequence of steps.

To the article...

What fonts are used for headings and text on our site?

"That looks nice, I wonder what font that is? And what colour?" In web development, as in the garden, it's always interesting to look at the results of other creators....

To the article...

How to make a screenshot of the complete homepage

Gerry the web gardener answers the question how to make a screenshot of a complete homepage.

To the article...