dump() ist
die Funktion dump($vars, $label = '', $return = false){
if (ini_get('html_errors')) {
$content = "<pre>n";
if ($label != '') {
$content .= "<strong>{$label} :</strong>n";
}
$content .= htmlspecialchars(print_r($vars, true));
$content .= "n</pre>n";
} anders {
$content = $label . " :N" . print_r($vars, true);
}
if ($return) { return $content; }
echo $content;
null zurückgeben;
}
array_remove_empty()
Funktion array_remove_empty(& $arr, $trim = true){
foreach ($arr as $key => $value) {
if (is_array($value)) {
array_remove_empty($arr[$key]);
} anders {
$value = trim($value);
if ($value == '') {
unset($arr[$key]);
} elseif ($trim) {
$arr[$key] = $value;
}
}
}
}
array_chunk() Die PHP-Version ist eine neue Methode für die Erstellung von Arrays