2019-09-06 23:53:10 +08:00

6 lines
110 B
PHP
Executable File

<?php
if ($argc == 1) {
die("Usage: php export.php [class_name]\n");
}
ReflectionClass::export($argv[1]);