当前位置: 首页>>代码示例>>PHP>>正文


PHP Folder::getSize方法代码示例

本文整理汇总了PHP中Folder::getSize方法的典型用法代码示例。如果您正苦于以下问题:PHP Folder::getSize方法的具体用法?PHP Folder::getSize怎么用?PHP Folder::getSize使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Folder的用法示例。


在下文中一共展示了Folder::getSize方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: getFormattedSize

            echo scriptUrl . "/" . folderFiles . "/browseFiles.php?folderId=" . $subFolder->id;
            echo showPopup ? "&popup=1" : "";
            echo !empty($fileTypes) ? "&fileTypes=" . $fileTypes : "";
            ?>
"><?php 
            echo $subFolder->name;
            ?>
</a>
</td>

<td width="50%" align="right" <?php 
            echo $i % 2 == 0 ? " style=\"background:#ebebeb\"" : "";
            ?>
>
<?php 
            echo getFormattedSize($subFolder->getSize());
            ?>
</td>
</tr>
<?php 
            $old = $i;
        }
    }
    if ($files->rows()) {
        for ($i = $old + 1; list($id) = $files->fetchrow_array(); $i++) {
            $file = new File($id);
            ?>
<tr>
<td height="25" width="16"<?php 
            echo $i % 2 == 0 ? " style=\"background:#ebebeb\"" : "";
            ?>
开发者ID:gkathir15,项目名称:catmis,代码行数:31,代码来源:browseFilesForm.php

示例2: getSize

 /** 
  * Get total size of subfolders and files of this folder
  * @return size of this folder in bytes
  */
 function getSize()
 {
     if (!empty($this->id)) {
         global $dbi;
         $totalSize = 0;
         /* Get size of subfolders */
         $result = $dbi->query("SELECT id FROM " . folderTableName . " WHERE parentId=" . $this->id);
         for ($j = 0; list($id) = $result->fetchrow_array(); $j++) {
             $folder = new Folder($id);
             $totalSize += $folder->getSize();
         }
         /* Get size of files */
         $result = $dbi->query("SELECT id FROM " . fileTableName . " WHERE folderId=" . $this->id);
         for ($j = 0; list($id) = $result->fetchrow_array(); $j++) {
             $file = new File($id);
             $totalSize += $file->getSize();
         }
         /* Return size of folder in bytes */
         return $totalSize;
     }
 }
开发者ID:gkathir15,项目名称:catmis,代码行数:25,代码来源:Folder.class.php

示例3: validateTextLength

">
<a href="index.php?folderId=<?php 
            echo $subFolder->id;
            ?>
"><?php 
            echo validateTextLength($subFolder->name, 30);
            ?>
</a>
</td>

<td nowrap="nowrap" align="right" class="small1 <?php 
            echo $class;
            ?>
">
<?php 
            $site->printFormattedSize($subFolder->getSize());
            ?>
</td>

<td nowrap="nowrap" class="small1 <?php 
            echo $class;
            ?>
">
<?php 
            $lastModified = $subFolder->getLastModified();
            if ($lastModified != 0) {
                $site->printTimestamp($lastModified);
            } else {
                echo "-";
            }
            ?>
开发者ID:gkathir15,项目名称:catmis,代码行数:31,代码来源:fileIndexForm.php


注:本文中的Folder::getSize方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。