nbsp;html public -//w3c//dtd xhtml 1.0 transitional//en http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd>
office 515158 2011 oa办公系统
query(select * from .db_tablepre.menu where fatherid='.$sqlnumeid.' and menutype='0' order by menunum asc);
while ($row = $db->fetch_array($query)) {
?>
if($nums==$row[menuid]){?> id=subnavb }?>>=$row[menuname]?>
新建档案类别
栏目名称: get_user_add_help() ?>
档案审批人员: get_user_add_help() ?>
选择上级栏目:
顶级栏目
$title,
'father' => $father,
'keyuser' => $keyuser,
'date' => get_date('y-m-d',php_time),
'uid' => $_user->id
);
insert_db('file_type',$file_type);
$id=$db->insert_id();
$content=$title.get_inc_log(1).$father.get_inc_log(1).$keyuser;
$title='新增档案类别';
get_oa_log_dbadd($id,$content,$title,20,$_user->id);
goto_page('admin.php?ac=file_type&fileurl=file');
}
//读取部门
function get_file_public_list($fatherid=0,$selid=0,$layer=0)
{
$str=;
global $db;
$query = $db->query(select * from .db_tablepre.file_type where father='$fatherid' order by id asc );
if(count($query)>0){
for($i=0;$i
$str.=1;
}
while ($row = $db->fetch_array($query)) {
$selstr = $row['id'] == $selid ? 'selected=selected' : '';
$htmlstr= ''.$str.$row['title'].'';
echo $htmlstr;
get_file_public_list($row['id'],$selid,$layer+1,$type);
}
}
return ;
}
?>
回复讨论(解决方案) 看了下,类似还有get_user_add_help。
从理论上看这个php文件是被一个主文件调用。
ps:如果这个php文件单独可以运行的话,那么就是在环境中dll定义了这些类。
看了下,类似还有get_user_add_help。
从理论上看这个php文件是被一个主文件调用。
ps:如果这个php文件单独可以运行的话,那么就是在环境中dll定义了这些类。
get_user_add_help是另外一个php文件吗?在环境中dll定义了这些类是什么意识? get_oa_member_public 显然不是在你给出的代码中定义的
并且你给出的代码中也没有 include(require)函数的使用
显然你的代码是被其他程序文件 include 执行的
你可在 get_oa_member_public(2,keyuser,,+选择审批人员,60,4) 之前 print_r(get_included_files()); 看一下都有哪些文件被加载
并且在这些文件中查找 function get_oa_member_public 字样
搜索一下整个框架不就知道了
