PHP 8.5.0 Alpha 4 available for testing

Voting

: max(two, five)?
(Example: nine)

The Note You're Voting On

darkhogg (foo) gmail (bar) com
15 years ago
The following code

<?php
eval( '?> foo <?php' );
?>

does not throw any error, but prints the opening tag.
Adding a space after the open tag fixes it:

<?php
eval( '?> foo <?php ' );
?>

<< Back to user notes page

To Top