aboutsummaryrefslogtreecommitdiff
path: root/Examples/php/pragmas/runme.php
blob: 7b2c179cb5e5b9058e3f05bcb3f6b59981bb8d2f (plain)
1
2
3
4
5
6
7
8
9
<?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";
?>