2017 © Pedro Peláez
 

library storage

windwork storage components

image

windwork/storage

windwork storage components

  • Monday, June 26, 2017
  • by windwork
  • Repository
  • 1 Watchers
  • 0 Stars
  • 54 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 4 Versions
  • 0 % Grown

The README.md

Windwork 附件存贮组件

为兼容本地存贮和第三方云存贮平台或存贮系统,特封装存贮组件, (*1)

安装

该组件已包含在Windwork框架中,如果你已安装Windwork框架则可以直接使用。, (*2)

  • 安装方式一:通过composer安装(推荐)
composer require windwork/wf
  • 安装方式二:传统方式安装
    下载源码后,解压源码到项目文件夹中,然后require_once $PATH_TO_WF/core/lib/Loader.php文件,即可自动加载组件中的类。

使用方法

1. 在 config/app.php 中设置 srv.storage 组件参数
2. 调用实例方法 wfStorage()->xxx()

配置参数

$cfg = [
    'class'      => '\\wf\\storage\\adapter\\File',          // 附件处理 adapter
    'dir'        => 'storage',       // 附件存贮文件夹,相对于站点根目录
    'storageUrl' => 'storage',       // 附件目录url,格式:http://www.windwork.org/storage/(后面带'/',如果附件访问网址跟附件上传站点不是同一个站时设置)
    'sizeLimit'  => '2048',          // (M)文件上传大小限制
];

创建实例

// 通过工厂方法创建实例
$class = {$cfg['class']};
$stor = new $class($cfg);

// 通过函数创建

// 函数定义在 wf/web/lib/helper.php
//function wfStorage() {
//    return wfStorage();
//}

$stor = wfStorage();

thumb 函数

生成存储系统中缩略图的链接, (*3)

/**
 * 获取缩略图的URL,一般在模板中使用
 * @param string|ing $path 图片路径或图片附件id
 * @param int $width = 100 为0时按高比例缩放
 * @param int $height = 0 为0时按宽比例缩放
 * @return string
 */
function thumb($path, $width = 100, $height = 0) {
    return wfStorage()->getThumbUrl($path, $width, $height);
}

storageUrl 函数

/**
 * 根据上传文件的Path获取完整URL
 * @param string $path
 * @return string
 */
function storageUrl($path) {
    return wfStorage()->getFullUrl($path);
}

storagePath 函数

/**
 * 根据上传文件的URL获取Path
 * @param string $url
 * @return string
 */
function storageUrl($url) {
    return wfStorage()->getPathFromUrl($url);
}




, (*4)

要了解更多?

The Versions

26/06 2017

dev-master

9999999-dev

windwork storage components

  Sources   Download

MIT

The Requires

  • php >=5.5.0

 

26/06 2017

0.7.0

0.7.0.0

windwork storage components

  Sources   Download

MIT

The Requires

  • php >=5.5.0

 

23/06 2017

0.5.1

0.5.1.0

windwork storage components

  Sources   Download

MIT

The Requires

  • php >=5.5.0

 

24/05 2017

0.3.3

0.3.3.0

windwork storage components

  Sources   Download

MIT

The Requires

  • php >=5.5.0