dimaslanjaka / currency-converter
PHP Currency Converter tools, based extending of php-curl-class.
dev-master
2020-03-14 13:36 UTC
Requires
- php: >=5.3
- ext-curl: *
- php-curl-class/php-curl-class: ^8.6
Requires (Dev)
- ext-gd: *
- phpunit/phpunit: *
- squizlabs/php_codesniffer: *
Suggests
- ext-mbstring: *
This package is auto-updated.
Last update: 2025-04-04 10:11:09 UTC
README
Currency Converter Tools
Get Script Project
git clone https://github.com/dimaslanjaka/currency-converter.git
Requirement Build
Build
composer install
EXAMPLE -> Access Folder Test
Usage
require __DIR__.'/vendor/autoload.php'; //your vendor autoload.php use \Curl\CC; // Object Oriented $c = new CC(); $c->set('USD'); $c->build()->get_data(); // ... Chaining Oriented Method $c = new CC()->set('USD')->build()->get_data();
Description
//your vendor autoload.php require __DIR__.'/vendor/autoload.php'; //Use Class use \Curl\CC; //Initialize Currency Converter Class $c = new CC(); //Set Source Currency $c->set('USD'); // Set source currency from USD //Build Repo $c->build(); //Get Data repo $c->get_data(); //Converting to available Currency $c->convert(1, 'EUR'); //convert 1 USD to EUR //Refresh Repo $c->refresh(); //Get Available Currency Converter For Source Currency $c->available(); //Get Result echo $c->__toString();
Install Currency-Converter On termux
#!/data/data/com.termux/files/usr/bin/sh pkg up -y pkg install curl php git -y #begin install Composer curl -sS https://getcomposer.org/installer | php -- --install-dir=/data/data/com.termux/files/usr/bin --filename=composer #verify Composer composer #Clone Currency Converter git clone https://github.com/dimaslanjaka/currency-converter.git #cd folder currency-converter cd currency-converter #Install library composer install #Run currency Converter php -S localhost:8000 #open browser http://localhost:8000/test #for out from termux php server #CTRL+C on your termux tab runner