PHP code example of yasserbelhimer / plesk-api-php-lib
1. Go to this page and download the library: Download yasserbelhimer/plesk-api-php-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/ */
yasserbelhimer / plesk-api-php-lib example snippets
$client = new \PleskX\Api\Client($host);
$client->setCredentials($login, $password);
$client->customer()->create([
'cname' => 'Plesk',
'pname' => 'John Smith',
'login' => 'john',
'passwd' => 'secret',
'email' => '[email protected]',
]);
$client = new \PleskX\Api\Client($host);
$client->setSecretKey($secretKey)
$client = new \PleskX\Api\InternalClient();
$protocols = $client->server()->getProtos();