PHP code example of hamza094 / unit_conversion
1. Go to this page and download the library: Download hamza094/unit_conversion library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
hamza094 / unit_conversion example snippets
$use Hamza094\UnitConversions\Weight;
echo Weight::fromkilograms(100)->toLbs();
$unit_conversion = new Hamza094\UnitConversion();
echo $unit_conversion->echoPhrase('Hello, Hamza094!');