You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
<?php
|
|
|
|
$all_functions = get_defined_functions();
|
|
$xcache_functions = preg_grep("/^xcache_/", $all_functions['internal']);
|
|
foreach ($xcache_functions as $function) {
|
|
ReflectionFunction::export($function);
|
|
}
|
|
|