ID: 15361 Updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] -Status: Open +Status: Closed Bug Type: PCRE related Operating System: NetBSD 1.5.2 PHP Version: 4.1.1 New Comment:
sorry, simple reason my host does NOT linked - php-pcre-4.1.1 PHP4 extension for Perl-compatible regular expressions - into his build and error-reporting was off, - error_reporting (E_ALL ); - inside a script doesn´t changes anything, so I got no error-report like he in his - /var/log/httpd/error_log - cu tlb Previous Comments: ------------------------------------------------------------------------ [2002-02-03 18:09:07] [EMAIL PROTECTED] hello for my small logic parser and sql-query-generator I used preg_split with PREG_SPLIT_DELIM_CAPTURE flag like shown below, but now with 4.1.1 my result $elements is empty an the rest of my function work with a empty array and nothing happen. // my input is like $inString = array('tlb | test'); // use of preg_split $elements = preg_split ("/\s+|(\()|(\))|(\\\\\")|(\+)|(,)|(&)|(!)|(\|)/", $inString, -1, PREG_SPLIT_NO_EMPTY|PREG_SPLIT_DELIM_CAPTURE); // output, result was in 4.0.6 like ... $elements[0] ='tlb' $elements[1] ='|' $elements[2] ='test' cu tlb ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=15361&edit=1 -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php