PHP code example of jiny / convert
1. Go to this page and download the library: Download jiny/convert 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/ */
jiny / convert example snippets
// 오토로드
ch = new Jiny\Convert\Length\Inch(1);
echo $inch->centi();
$inch->setValue(100);
// 설정된 인치(inch) 값을 센치미터로 변환 합니다.
echo $inch->centi();