[php] Always use <?php to start .php file

A few files had just <? which only works when the short_open_tag option
is on.  It is on by default (at least in current PHP versions) and we
explicitly tell PHP not to read php.ini, but the PHP docs recommended to
avoid it, and PHP can be built with --disable-short-tags.
This commit is contained in:
Olly Betts 2021-12-18 14:41:06 +13:00
commit dee8b65823
2 changed files with 2 additions and 2 deletions

View file

@ -1,4 +1,4 @@
<?
<?php
require "tests.php";
check::functions(array('is_python_builtin'));

View file

@ -1,4 +1,4 @@
<?
<?php
require "tests.php";