17 lines
450 B
PHP
17 lines
450 B
PHP
|
#!/usr/bin/php -c/var/www/batch/config/php_batch_sd.ini
|
||
|
<?php
|
||
|
|
||
|
include_once(FWK_PATH.'common/chiffres.php');
|
||
|
include_once(FWK_PATH.'common/dates.php');
|
||
|
include_once(INCLUDE_PATH.'partenaires/classMGreffes.php');
|
||
|
|
||
|
$iGreffe=new MGreffes();
|
||
|
|
||
|
//g$iGreffeetProduitWS($siren, $type, $idCommande=0, $vecteur='XL', $option='') {
|
||
|
|
||
|
$ret=$iGreffe->getProduitWS(552144503, 'KB', 'kbis', 'XL', '');
|
||
|
|
||
|
echo "ret='$ret'".EOL;
|
||
|
|
||
|
print_r($ret).EOL;
|
||
|
?>
|