PHP code example of mateusfbi / totvs-rm-soap

1. Go to this page and download the library: Download mateusfbi/totvs-rm-soap 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/ */

    

mateusfbi / totvs-rm-soap example snippets




use TotvsRmSoap\Connection\WebService;
use TotvsRmSoap\Services\DataServer;

echo "<pre>";

    $ds =  new  DataServer(new WebService);
    $ds->setDataServer("GlbColigadaDataBR");
    $ds->setContexto("CODSISTEMA=G;CODCOLIGADA=0;CODUSUARIO=mestre");
    $ds->setFiltro("1=1");
    $result = $ds->readView();

    if(array_key_exists('GColigada',$result)){
        $result = $result['GColigada'];
    }else{
        $result = [];
    }

    var_dump($result);

echo "</pre>";