14.inc
来自「国外很不错的一个开源OA系统Group-Office」· INC 代码 · 共 19 行
INC
19 行
<?php$db1 = new db();require_once($GO_CONFIG->class_path.'filesystem.class.inc');$fs = new filesystem(true);$sql = "SELECT * FROM pmProjects";$db1->query($sql);while($db1->next_record()){ $old_path = $GO_CONFIG->file_storage_path.'projects/'.$db1->f('name'); $new_path = $GO_CONFIG->file_storage_path.'projects/'.$db1->f('id'); if(file_exists($old_path)) { $fs->move($old_path, $new_path); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?