Files
crm.twinpol.com/modules/EcmCommunes/parser.php
2025-05-12 15:44:39 +00:00

20 lines
458 B
PHP

<?php
$xmlstring=file_get_contents('modules/EcmCommunes/TERC.xml');
$xml = simplexml_load_string($xmlstring);
$powiaty=array();
echo "<pre>";
foreach ($xml->catalog->row as $row){
// kod powiat $row->col[5]
if(substr($row->col[5],0,5)=='gmina'){
$powiaty[]=$row->col[4];
}
// nazwa powiatu $row->col[4]
}
echo " var availableTags = [<br>";
$powiaty=array_unique($powiaty);
foreach ($powiaty as $powiat){
echo '"'.$powiat.'",<br>';
}
echo '];';
?>