-
Hahn Axel (hahn) authoredHahn Axel (hahn) authored
embed_example.php 288 B
<?php
$AMCLI=__DIR__.'/../built_packages/amcli';
$INI=__DIR__.'/../src/simple.ini';
$sCommand="$AMCLI --ini='$INI'";
$aOut=[];
exec($sCommand, $aOut, $iRc);
if($iRc==0){
header('Content-type: application/json');
}else{
echo "Error: occured...\n";
}
echo implode("\n", $aOut);