PHP code example of alirezax5 / marzbanapiphp

1. Go to this page and download the library: Download alirezax5/marzbanapiphp 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/ */

    

alirezax5 / marzbanapiphp example snippets



lirezax5\MarzbanApi\Marzban;
$mb = new Marzban('http://ip:port');
$mb->setUsername('username');
$mb->setPassword('password');
$mb->setToken('token');


lirezax5\MarzbanApi\Marzban;
$mb = new Marzban('http://ip:port');
$mb->setUsername('username');
$mb->setPassword('password');
$token = $mb->getAdminToken();
$mb->setToken($token);