Re: [nyphp-talk] Regular expression in PHP with preg_match using Roman Numerals?

2010-02-20 Thread Rene Samson
Hi David, I've added the roman numerals to your regex, now it will match either just the year (2000) or the year + the roman numeral (2000/I) up to VIII (I know you said it goes up to III, but you never know) preg_match('/\((19|20)[0-9][0-9](\/(I{1,3}|IV|VI{0,3}))?\)/',$line,$found); I haven

Re: [nyphp-talk] WAMP (minus the M) forking question - also open to other ideas

2009-04-29 Thread Rene Samson
Michael, I don't know how much control you have over the webserver, but have you looked at the PCNTL extension? I've played around with it a while ago, and it works very nicely. I've only used it in a LAMP environment, but it should do the same in a WAMP environment. Rene Michael J. Forte wro