22 lines
682 B
PHP
Executable File
22 lines
682 B
PHP
Executable File
<?php
|
|
if (isset($debug[1]) && $debug[1] == '1') {
|
|
$debugMsg .= monDebug (1,[
|
|
'affAdmin' => $affAdmin,
|
|
'codeOpe' => $codeOpe,
|
|
'uploadOk' => $uploadOk,
|
|
'lgCourante' => $_SESSION['lgCouranteCode'],
|
|
'propager' => $propager,
|
|
'trouveLG' => $trouveLG,
|
|
'theIco' => $theIco,
|
|
'numTxt' => isset($numTxt)??null,
|
|
'numeroMenuPrpal' => $numeroMenuPrpal,
|
|
'idLanguenav' => $idLanguenav,
|
|
'textesAffSection' => $textesAffSection,
|
|
'nombre de variable postées' => isset($_POST)?var_dump(count($_POST, COUNT_RECURSIVE)):'pas de postage',
|
|
'POST: '=> count($_POST),
|
|
"GET: " => count($_GET),
|
|
"COOKIE: " => count($_COOKIE),
|
|
|
|
],'choixIco.debug.php');
|
|
}
|
|
?>
|