Hallo,
ich habe ein Problem und weiß jetzt langsam nicht mehr weiter. Es hat den Anschein, als würde PHP (5.3.2) buggen...
Der Code:
Die Ausgabe:
Zusätzlich liefert mir das Error-Log:
Was ich nicht verstehe: Wo bzw. warum ändert sich der Variablentyp von $link_quick[]?
Hat jemand ähnliche Probleme?
ich habe ein Problem und weiß jetzt langsam nicht mehr weiter. Es hat den Anschein, als würde PHP (5.3.2) buggen...
Der Code:
PHP:
$link_quick = array();
var_dump($link_quick); # Stelle 1
foreach($find_lnk as $key => $value) {
var_dump($link_quick); # Stelle 2
$url = urlencode($value['t114001f012']); // enthält: http://www.auto-motor-sport.de/
$label = $value['t114001f010']; // enthält: auto motor sport
$link_quick[] = $label.'|'.$url.'|_blank';
}
Die Ausgabe:
Code:
Stelle 1: array(0) { } (in Ordnung)
Stelle 2: int(0) (fehlerhaft)
Zusätzlich liefert mir das Error-Log:
Code:
PHP Warning: Cannot use a scalar value as an array in ...
Was ich nicht verstehe: Wo bzw. warum ändert sich der Variablentyp von $link_quick[]?
Hat jemand ähnliche Probleme?