Date: 05/05/00
- Next message: Rasmus Lerdorf: "Re: [PHP-DEV] is this fucntion still revavant???"
- Previous message: Ed Blincoe: "[PHP-DEV] is this fucntion still revavant???"
- Next in thread: Andrei Zmievski: "Re: [PHP-DEV] preg_replace and e option (bug or feature?)"
- Reply: Andrei Zmievski: "Re: [PHP-DEV] preg_replace and e option (bug or feature?)"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Hiya
i was playing with the preg_replace function and found some annoying problems
maybe this is food for a feature request :)
but i first want to hear you guys
take this text:
$text = "#!this 'is' a \"test\" :)!#";
say i want everyting between #! and !# feed and replace to addslashes
you sould say i do :
$new_text = preg_replace("'#!(.*?)!#'ie", 'Addslashes("\\1")', $text);
but because of the " and the ' this will fall due the eval of preg_replace
resulting in a:
Parse error: parse error in Unknown on line 0
i suggest the founded strings in the regular can be called like this to
overcome this problem:
$new_text = preg_replace("'#!(.*?)!#'ie", 'Addslashes($1)', $text);
Anyone has comment on this?
Greetz,
Wico
-- PHP Development Mailing List <http://www.php.net/> To unsubscribe, e-mail: php-dev-unsubscribe <email protected> For additional commands, e-mail: php-dev-help <email protected> To contact the list administrators, e-mail: php-list-admin <email protected>
- Next message: Rasmus Lerdorf: "Re: [PHP-DEV] is this fucntion still revavant???"
- Previous message: Ed Blincoe: "[PHP-DEV] is this fucntion still revavant???"
- Next in thread: Andrei Zmievski: "Re: [PHP-DEV] preg_replace and e option (bug or feature?)"
- Reply: Andrei Zmievski: "Re: [PHP-DEV] preg_replace and e option (bug or feature?)"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

