1
0
Fork 0
xcache/devel/exportfunctions.php

9 lines
208 B
PHP
Raw Normal View History

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