PHP code example of monext / payline-tools-sdk

1. Go to this page and download the library: Download monext/payline-tools-sdk 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/ */

    

monext / payline-tools-sdk example snippets


    use PaylineTools\PaylineToolsClient;

    // create an instance
    $plnTools = new PaylineToolsClient($proxy_host, $proxy_port, $proxy_login, $proxy_password [, $pathLog= null[, $logLevel = Logger::INFO]]);
    /*
    If $pathLog is null, log files will be written under default logs directory. Fill with your custom log files path
    */

    // call a web service, for example getPaymentMeans
    $getPaymentMeansResponse = $plnTools->getPaymentMeans();