granam/tools
最新稳定版本:6.1.0
Composer 安装命令:
composer create-project granam/tools
包简介
Toolbox
README 文档
README
use namespace Granam\Tools\ValueDescriber; // "instance of \stdClass' echo ValueDescriber::describe(new \stdClass()); // "array {}" echo ValueDescriber::describe([]); // "resource" echo ValueDescriber::describe(tmpfile()); // "123,123.45,'123','123.45',array {\n 0 => string(3) "bar"},instance of \stdClass" echo ValueDescriber::describe(123, 123.45, '123', '123.45', ['bar'], new \stdClass());
File upload exception
if ($_FILES['user_attachment1']['error'] === UPLOAD_ERR_OK) { // upload successful } else { // File of name 'damn_big.png' has not been uploaded (The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form: 2000) throw new FileUploadException("File of name '{$_FILES['user_attachment1']['name']}' has not been uploaded", $_FILES['user_attachment1']['error']); }
Installation
composer require granam/tools
统计信息
- 总下载量: 44.84k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 1
- 依赖项目数: 11
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2016-01-27