Shorty1968
Erfahrenes Mitglied
Vielen dank mit den Tipps werde ich mir mal holen und zu gemüthe führen.
Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
[phpBB Debug] PHP Notice: in file [ROOT]/includes/functions_mods.php on line 103: Undefined index: LANG
$return [$row['attrs']['LANG']] = trim($row['data']);
function get_title($header)
{
if (is_string($header['TITLE']))
{
return($header['TITLE']);
}
$return = array();
foreach ($header['TITLE'] as $row)
{
if (!is_array($row))
{
continue;
}
$return [$row['attrs']['LANG']] = trim($row['data']);
}
return($return);
}
array(3) {
["name"]=>
string(5) "TITLE"
["attrs"]=>
array(1) {
["LANG"]=>
string(2) "en"
}
["data"]=>
string(18) "Full Style Refresh"
}
array(3) {
["name"]=>
string(5) "TITLE"
["attrs"]=>
array(1) {
["LANG"]=>
string(2) "en"
}
["data"]=>
string(24) "Debug Errors and Notices"
}
array(3) {
["name"]=>
string(5) "TITLE"
["attrs"]=>
array(1) {
["LANG"]=>
string(2) "fr"
}
["data"]=>
string(28) "Erreurs et Notices de débug"
}
array(3) {
["name"]=>
string(5) "TITLE"
["attrs"]=>
array(1) {
["LANG"]=>
string(2) "en"
}
["data"]=>
string(47) "Notify the post author about deleting this post"
}
Hallo ich betreibe ein phpbb Forum und habe nicht viel ahnung von php,ich habe einen Mod in der neuen phpbb Version zum Laufen gebracht,nun bekomme ich im ACP Folgende Debug meldung
echo "<pre>"; // Das ist damit es leserlich formatiert wird
var_dump($user);
echo "</pre>";
if (!is_array($row))
{
continue;
}
$return [$row['attrs']['LANG']] = trim($row['data']);
}
return($return);
}
function get_title($header)
{
// Test-weise:
echo '<pre>'; var_dump($header); echo '</pre>';
if (is_string($header['TITLE']))
{
return($header['TITLE']);
}
$return = array();
foreach ($header['TITLE'] as $row)
{
if (!is_array($row))
{
continue;
}
$return [$row['attrs']['LANG']] = trim($row['data']);
}
return($return);
}
echo "<pre>"; // Das ist damit es leserlich formatiert wird
var_dump($row);
echo "</pre>";