xynnn/unicorn
Composer 安装命令:
composer require xynnn/unicorn
包简介
A framework agnostic PHP library to convert several units
关键字:
README 文档
README
A PHP based framework agnostic library to convert several units
Documentation
Conversion example
Here is a quick example that shows how to convert 110 centimeters to meters:
$converter = new LengthConverter(); try { $result = $converter->convert( new ConvertibleValue('110', $converter::$centimeter), $converter::$meter ); $result->getValue(); // '1.10...' with 999 decimals $result->getFloatValue(); // 1.1 $result->getUnit()->getAbbreviation(); // 'm' $result->getUnit()->getName(); // 'meter' } catch (UnsupportedUnitException $e) { // Unit might not be present in the converters units array } catch (InvalidArgumentException $e) { // Something is wrong with the provided ConvertibleValue or Unit }
Requirements
- PHP 7.0 or higher
- BCMath extension installed and enabled
Installation
Open a command console, enter your project directory and execute the following command to download the latest stable version of unicorn:
composer require xynnn/unicorn
This command requires you to have Composer installed globally, as explained in the installation chapter of the Composer documentation.
Authors
Philipp Bräutigam
Steffen Brand
License
Copyright (c) 2016 Philipp Bräutigam, Steffen Brand and contributors.
This repository is released under the GNU LGPL v3.0 license.
统计信息
- 总下载量: 0
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 9
- 点击次数: 3
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: GNU
- 更新时间: 2016-11-07
