16 lines
531 B
PHP
16 lines
531 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(FWK_PATH.'common/curl.php');
|
|
include_once(INCLUDE_PATH.'insee/classMInsee.php');
|
|
include_once(INCLUDE_PATH.'partenaires/classMCadastre.php');
|
|
include_once(FWK_PATH.'mail/sendMail.php');
|
|
|
|
$iCadastre=new MCadastre();
|
|
|
|
print_r($iCadastre->getLocaux(392368734));
|
|
print_r($iCadastre->getParcelles(212300800));
|
|
print_r($iCadastre->getLocaux(212300800));
|
|
|
|
?>
|