You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

17 lines
360 B

<?php
//require_once "../header_nomenu.php";
#当前登陆者
$arr = array(
'../../workflow/impl/*.php',
'../../workflow/model/*.php',
'../../workflow/lib/*.php',
'../../workflow/Handler/*.php',
'../../workflow/*.php'
);
foreach ($arr as $dir) {
$files = glob($dir);
foreach ($files as $file) {
require_once $file;
}
}