swig/Examples/php/pragmas/runme.php
Olly Betts e54d44c4be php: Omit closing ?> in manual and examples
PSR-12 says "The closing ?> tag MUST be omitted from files containing
only PHP".
2021-03-23 11:47:19 +13:00

8 lines
224 B
PHP

<?php
# For finding include.php
set_include_path(realpath(dirname(__FILE__)) . PATH_SEPARATOR . get_include_path());
require "example.php";
echo "Version - " . ((new ReflectionExtension('example'))->getVersion()) . "\n";