WP File Manager
Current Path:
/
home
/
argothem
/
www
/
organecyberpresse
/
plugins
/
auto
/
manuelsite
/
v2.0.2
/
modeles
/
Name
Action
..
faq.html
Edit
faq_fonctions.php
Edit
Editing: faq_fonctions.php
<?php /** * Plugin manuel du site * Fichier de fonctions spécifique au modele modeles/faq.html */ /** * Transforme une chaine p1:v1;p2:v2 en tableau associatif * * @param string $params * Les paramètres sous forme de chaine * @return array * Les paramètres sous forme de tableau */ function manuelsite_params_to_array($params = '') { $tablo = []; if ($params != '') { $params = explode(';', $params); foreach ($params as $param) { [$key, $value] = explode(':', $param, 2); $tablo[$key] = $value; } } return $tablo; }