1. Go to this page and download the library: Download asikam/softone 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/ */
asikam / softone example snippets
use Asikam\Softone\SoftoneBrowser;
// Create a new instance
$softone = new SoftoneBrowser();
// Search for customers with a specific tax ID
$softone->search("CUSTOMER", 'CUSTOMER.AFM=000000000*=;');
// Or with named parameters
$softone->search(
object: "CUSTOMER",
filters: 'AFM=000000000=;',
list: 'Web',
start: 0,
limit: 30
);
// Access the response data
foreach ($softone->responseData as $item) {
echo $item['CUSTOMER.AFM'] . "\n";
echo $item['CUSTOMER.NAME'] . "\n";
}
use Asikam\Softone\Softone;
// Create a new instance
$softone = new Softone();
// Get browser information
$softone->setService('getBrowserInfo');
$softone->setObject('CUSTOMER');
$softone->setFilters('CUSTOMER.AFM=000000*=;');
$softone->send();
// Get browser data using the request ID from the previous request
$softone->setService('getBrowserData');
$softone->setReqId($softone->reqID);
$softone->limit(10);
$softone->send();
// Access the response data
foreach ($softone->data as $item) {
echo $item['CUSTOMER.NAME'] . "\n";
echo $item['CUSTOMER.AFM'] . "\n";
}