1
0
Fork 0
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.
xcache/devel/exportfunctions.php

9 lines
208 B
PHP

<?php
$all_functions = get_defined_functions();
$xcache_functions = preg_grep("/^xcache_/", $all_functions['internal']);
foreach ($xcache_functions as $function) {
ReflectionFunction::export($function);
}