PHP code example of hnhdigital-os / php-linode-api
1. Go to this page and download the library: Download hnhdigital-os/php-linode-api 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/ */
hnhdigital-os / php-linode-api example snippets
foreach ((new Regions())->get() as $region) {
// Do something with the region data (returned as an instance of Region)
}
$regions = (new Regions())->get()->all();
$region = new Region('us-east-1a', true);
echo $region->id.' ('.$region->country.')';
$result = (new Region('us-east-1a'))->get();
print_r($result);