Why is "HTTP: ..." a valid PHP code string?

In my PHP script, http://www.google.com is a valid line of code ... why?

 <?php http://www.google.com ?> 

This does not result in an error.

+5
source share
1 answer

http: creates goto target label, and the rest are commented out //

+15
source

Source: https://habr.com/ru/post/1232642/


All Articles