6 lines
110 B
PHP
Executable File
6 lines
110 B
PHP
Executable File
<?php
|
|
if ($argc == 1) {
|
|
die("Usage: php export.php [class_name]\n");
|
|
}
|
|
ReflectionClass::export($argv[1]);
|