當前位置: 首頁>>代碼示例>>PHP>>正文


PHP FileData::getCategory方法代碼示例

本文整理匯總了PHP中FileData::getCategory方法的典型用法代碼示例。如果您正苦於以下問題:PHP FileData::getCategory方法的具體用法?PHP FileData::getCategory怎麽用?PHP FileData::getCategory使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在FileData的用法示例。


在下文中一共展示了FileData::getCategory方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: header

 $department_stmt = $pdo->prepare($department_query);
 $department_stmt->bindParam(':user_id', $_SESSION['uid']);
 $department_stmt->execute();
 $result = $department_stmt->fetchAll();
 if ($department_stmt->rowCount() != 1) {
     header('Location:error.php?ec=14');
     exit;
     //non-unique error
 }
 $filedata = new FileData($data_id, $pdo);
 // error check
 if (!$filedata->exists()) {
     header('Location:error.php?ec=2');
     exit;
 } else {
     $category = $filedata->getCategory();
     $realname = $filedata->getName();
     $description = $filedata->getDescription();
     $comment = $filedata->getComment();
     $owner_id = $filedata->getOwner();
     $department = $filedata->getDepartment();
     //CHM
     $table_name_query = "SELECT table_name FROM {$GLOBALS['CONFIG']['db_prefix']}udf WHERE field_type = '4'";
     $table_name_stmt = $pdo->prepare($table_name_query);
     $table_name_stmt->execute();
     $result = $table_name_stmt->fetchAll();
     $num_rows = $table_name_stmt->rowCount();
     $t_name = array();
     $i = 0;
     foreach ($result as $data) {
         $explode_v = explode('_', $data['table_name']);
開發者ID:watsonad,項目名稱:opendocman,代碼行數:31,代碼來源:edit.php


注:本文中的FileData::getCategory方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。