Popularity
2.7
Growing
Activity
0.0
Stable
128
6
18
Code Quality Rank:
L5
Programming language: PHP
License: Apache License 2.0
Tags:
Numbers
Latest version: v0.5.2
PHP Conversion alternatives and similar libraries
Based on the "Numbers" category.
Alternatively, view PHP Conversion alternatives based on common mentions on social networks and blogs.
-
LibPhoneNumber for PHP
PHP version of Google's phone number handling library -
Math
A PHP 5.3+ mathematics library, providing functionality for large numbers -
Numbers PHP
Advanced Mathematics Library for PHP (port of Numbers.js) -
bigint-wrapper-php
Fast common interface for php_gmp and php_bcmath modules -
PHP Units of Measure
A library for handling physical quantities and the units of measure in which they're represented.
Collect and Analyze Billions of Data Points in Real Time
Manage all types of time series data in a single, purpose-built database. Run at any scale in any environment in the cloud, on-premises, or at the edge.
Promo
www.influxdata.com
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of PHP Conversion or a related project?
README
php-conversion
Library for converting units and sizes in PHP.
Units supported
- Acceleration
- Angle
- Area
- Digital information
- Electric current
- Frequency
- Fuel consumption
- Length
- Luminous Intensity
- Mass
- Power
- Pressure
- Speed
- Temperature
- Time
- Velocity
- Voltage
- Volume
Sizes supported
- Hat size
- Child shoe size
Number base supported
- Binary
- Octal
- Decimal
- Hexadecimal
Usage
Example usage:
use Crisu83\Conversion\Quantity\DigitalInformation\DigitalInformation;
use Crisu83\Conversion\Quantity\Length\Length;
use Crisu83\Conversion\NumberBase\NumberBase;
use Crisu83\Conversion\Size\HatSize\HatSize;
use Crisu83\Conversion\Size\ShoeSize\ChildShoeSize;
use Crisu83\Conversion\Quantity\Length\Unit as LengthUnit;
use Crisu83\Conversion\Quantity\DigitalInformation\Unit as DIUnit;
use Crisu83\Conversion\Size\HatSize\System as HatSizeSystem;
use Crisu83\Conversion\Size\ShoeSize\System as ShoeSizeSystem;
require(dirname(__DIR__) . '/vendor/autoload.php');
$length = new Length(1, LengthUnit::METRE);
echo $length . '<br>';
echo $length->add(1, LengthUnit::FOOT) . '<br>';
echo $length->add(5)->sub(2, LengthUnit::FOOT) . '<br>';
echo $length->to(LengthUnit::YARD) . '<br>';
echo '<br>';
$di = new DigitalInformation(1000, DIUnit::MEGABYTE);
echo $di . '<br>';
echo $di->to(DIUnit::BIT)->out(2, '.', '') . '<br>';
echo $di->to(DIUnit::GIGABIT) . '<br>';
echo $di->to(DIUnit::TERABYTE)->out(10) . '<br>';
echo '<br>';
$number = new NumberBase("0xff", NumberBase::HEXADECIMAL);
echo $number . '<br>';
echo $number->to(NumberBase::DECIMAL) . '<br>';
echo $number->to(NumberBase::OCTAL) . '<br>';
echo $number->to(NumberBase::BINARY) . '<br>';
echo '<br>';
$hatSize = new HatSize(40, HatSizeSystem::CENTIMETRE);
echo $hatSize . '<br>';
echo $hatSize->to(HatSizeSystem::AMERICAN) . '<br>';
echo $hatSize->to(HatSizeSystem::BRITISH) . '<br>';
echo $hatSize->to(HatSizeSystem::INCH) . '<br>';
echo '<br>';
$shoeSize = new ChildShoeSize(20, ShoeSizeSystem::EUROPEAN);
echo $shoeSize . '<br>';
echo $shoeSize->to(ShoeSizeSystem::AMERICAN) . '<br>';
echo $shoeSize->to(ShoeSizeSystem::BRITISH) . '<br>';
echo $shoeSize->to(ShoeSizeSystem::INCH) . '<br>';
Sample output:
1.00 m
1.30 m
5.70 m
6.23 yd
1,000.00 MB
8388629474.89 b
7.81 Gb
0.0009534451 TB
0xff
255
o377
b11111111
40 cm
4 US
4 7/8 UK
15.748 in
20 EUR
4.5 - 5 US
3.5 - 4 UK
4.625 in