Hallo...
ich nutze in einem Script folgendes:
und erhalte diese Meldung:
Was bedeutet das genau und was kann ich dagegen tun?
Das Manuel und die Erläuterung in der php.ini helfen mir nicht wirklich weiter...
ich nutze in einem Script folgendes:
PHP-Code:
...
$f = fopen($file,'r');
$blub = fread($f,65535);
fclose($f);
$p = xml_parser_create();
xml_parse_into_struct($p,$blub,&$values,&$index);
xml_parser_free($p);
...
Warning: Call-time pass-by-reference has been deprecated - argument passed by value; If you would like to pass it by reference, modify the declaration of xml_parse_into_struct(). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file. However, future versions may not support this any longer. in /var/www/.../html/.../stats.php on line 60
Das Manuel und die Erläuterung in der php.ini helfen mir nicht wirklich weiter...
Kommentar