Skip to content
Extraits de code Groupes Projets
Valider 3ae87dd5 rédigé par cerdic's avatar cerdic
Parcourir les fichiers

prendre en charge les tag autofermant (<.../>) dans le parser xml

parent 6fa13c5d
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
...@@ -265,18 +265,26 @@ function parse_plugin_xml($texte){ ...@@ -265,18 +265,26 @@ function parse_plugin_xml($texte){
if (strlen($before)>0) if (strlen($before)>0)
return $texte; // before non vide, donc on est dans du texte return $texte; // before non vide, donc on est dans du texte
$tag = $chars[1];$closing_tag = explode(" ",trim($tag));$closing_tag=reset($closing_tag); $tag = $chars[1];
$closing_tag = explode(" ",trim($tag));$closing_tag=reset($closing_tag);
$txt = $chars[2]; $txt = $chars[2];
// tag fermant if(substr($tag,-1)=='/'){ // self closing tag
$chars = preg_split("{(</".preg_quote($closing_tag).">)}s",$txt,2,PREG_SPLIT_DELIM_CAPTURE); $tag = substr($tag,0,strlen($tag)-1);
if (!isset($chars[1])) { // tag fermant manquant $out[$tag][]="";
$out[$tag][]="erreur : tag fermant $tag manquant::$txt"; $txt = trim($txt);
return $out; }
else{
// tag fermant
$chars = preg_split("{(</".preg_quote($closing_tag).">)}s",$txt,2,PREG_SPLIT_DELIM_CAPTURE);
if (!isset($chars[1])) { // tag fermant manquant
$out[$tag][]="erreur : tag fermant $tag manquant::$txt";
return $out;
}
$content = $chars[0];
$txt = trim($chars[2]);
$out[$tag][]=parse_plugin_xml($content);
} }
$content = $chars[0];
$txt = trim($chars[2]);
$out[$tag][]=parse_plugin_xml($content);
} }
if (count($out)&&(strlen($txt)==0)) if (count($out)&&(strlen($txt)==0))
return $out; return $out;
...@@ -289,8 +297,11 @@ function applatit_arbre($arbre,$separateur = " "){ ...@@ -289,8 +297,11 @@ function applatit_arbre($arbre,$separateur = " "){
if (is_array($arbre)) if (is_array($arbre))
foreach($arbre as $tag=>$feuille){ foreach($arbre as $tag=>$feuille){
if (is_array($feuille)){ if (is_array($feuille)){
if ($tag!==intval($tag)) if ($tag!==intval($tag)){
$s.="<$tag>".applatit_arbre($feuille)."</$tag>"; $f = applatit_arbre($feuille);
if (strlen($f)) $s.="<$tag>$f</$tag>";
else $s.="<$tag/>";
}
else else
$s.=applatit_arbre($feuille); $s.=applatit_arbre($feuille);
$s .= $separateur; $s .= $separateur;
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter