PHP code example of relaypoint / kiala

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

    

relaypoint / kiala example snippets

 php
$o = (new GatewayFactory())->create('Kiala');
$o->setParameter('dspid', 'DEMO_DSP'); // Replace this with your dspid

$a = $o->search(array('zip' => '92100'));

var_dump($a);