[PHP] DOMDocument::schemaValidate() - libxml_get_errors()

2007-04-05 Thread Sébastien WENSKE
Hello all, (sorry for my bad english) I've this script, it checks an XML file with an XSD file. it reports errors in the XML with line number, but i've large XML file (up to 560MB) and the line number doesn't exceed 65535. for upper lines he return always 65535. An idea ? Thx in advance.

Re: [PHP] DOMDocument::schemaValidate() - libxml_get_errors()

2007-04-05 Thread Sébastien WENSKE
[EMAIL PROTECTED] To: Tijnema ! [EMAIL PROTECTED]; Sébastien WENSKE [EMAIL PROTECTED] Cc: php-general@lists.php.net Sent: Thursday, April 05, 2007 4:23 PM Subject: Re: [PHP] DOMDocument::schemaValidate() - libxml_get_errors() If the error occure after the line 65535, libxml_get_errors() returns

Re: [PHP] Spamed?

2007-02-07 Thread Sébastien WENSKE
what's this qustion ??? where ? - Original Message - From: [EMAIL PROTECTED] To: php-general@lists.php.net Sent: Wednesday, February 07, 2007 9:34 AM Subject: [PHP] Spamed? Are you a spammer? (I found your email on a spammer website!?!)

Re: [PHP] Spamed?

2007-02-07 Thread Sébastien WENSKE
ok, Fabio tour computer is infected by W32/MyDoom-AR (worm) http://www.sophos.fr/security/analyses/w32mydoomar.html - Original Message - From: Sébastien WENSKE [EMAIL PROTECTED] To: [EMAIL PROTECTED]; php-general@lists.php.net Sent: Wednesday, February 07, 2007 9:39 AM Subject: Re

[PHP] preg_replace();

2007-02-02 Thread Sébastien WENSKE
Hi all, I want replace the | (pipe) and the (space) chars where are between (double-quotes) by an underscore _ with the preg_replace(); funtction. Can someone help me to find the correct regex. Thanks in advance Seb

Re: [PHP] preg_replace(); [solved]

2007-02-02 Thread Sébastien WENSKE
]; $new = preg_replace(!\|| !, _, $old); $htmlContent = str_replace(\$old\, \$new\, $htmlContent); } } - Original Message - From: Steffen Ebermann [EMAIL PROTECTED] To: php-general@lists.php.net Cc: Sébastien WENSKE [EMAIL PROTECTED] Sent: Friday, February 02, 2007 9:01 PM Subject: Re