We upgraded a box running RH6.2 to RH7.
Same build process for PHP as before, but the ereg functions
didn't work the same.
ereg_replace("{cow}",$cow,$x);
now needs to be
ereg_replace("\{cow\}",$cow,$x);
The {} are escaped now. Dunno what changed 'under the hood', but
the only change we made (I'm about 90% certain) was going RH6.2 to
7.
Hope this helps someone else doing an upgrade from going as crazy as we
did... :)
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]