|
Posted by Toby A Inkster on 11/12/83 12:00
sisqorap@gmail.com wrote:
> Warning: Call-time pass-by-reference has been deprecated; If you would
> like to pass it by reference, modify the declaration of
> xml_parse_into_struct().
In other words, instead of this:
xml_parse_into_struct( $parser, $data, &$structure, &$index );
Use this:
xml_parse_into_struct( $parser, $data, $structure, $index );
And modify the function definition of xml_parse_into_struct to include the
ampersand symbols there instead.
--
Toby A Inkster BSc (Hons) ARCS
[Geek of HTML/SQL/Perl/PHP/Python/Apache/Linux]
[OS: Linux 2.6.17.14-mm-desktop-9mdvsmp, up 17 days, 4:36.]
Gnocchi all'Amatriciana al Forno
http://tobyinkster.co.uk/blog/2008/01/15/gnocchi-allamatriciana/
[Back to original message]
|