PHP code example of time4vps / lib
1. Go to this page and download the library: Download time4vps/lib 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/ */
time4vps / lib example snippets
// Auth details
$username = 'user';
$password = 'pass123';
Time4VPS\Base\Endpoint::Auth($username, $password);
// Get server details
$server_id = 748457;
$server = new Time4VPS\API\Server($server_id);
var_dump($server->details());
// Reboot server
try {
$server->reboot();
} catch (Time4VPS\Exceptions\APIException $e) {
die("Failed to reboot server: {$e->getMessage()}");
}