[Phpmyadmin-devel] regexp changes in latest version

Michal Cihar nijel at users.sourceforge.net
Fri Dec 12 01:40:00 CET 2003


Hi

Original message (Marc Delisle, Thursday 11.12.2003 12:43 -0500):
> SF bug tracker refuses new submissions for the moment (at least in our 
> project)
> so I submit this here for comments.
> 
> Thanks,
> 
> Marc
> --------------
> From Andrew Weiner:
> $save_filename = $cfg['SaveDir'] . preg_replace('@[/\\]
> @','_',$filename);

There needs to be \\\\ instead of \\, first escaping is eaten by php
when reading string and second one is required by preg (otherwise ] is
escaped so it doesn't find terminating ]).

> There seems to be problems with the preg_replace syntax in
> various phpMyAdmin files.  In general the regex should be
> delimited with a / on either side of the expression example:
> preg_replace('/@[/\\]@/','_',$filename);

No, it can be delimited with any character.


-- 
Regards
	Michal Cihar
	http://cihar.com




More information about the Developers mailing list