Re: [PHP] Compare PHP settings of two different servers

2009-07-25 Thread Dave M G
Bob, Thanks for replying. Another thought comes to mind. What text encoding are you using and what are the locale settings on those servers? I try to ensure UTF-8 is the only encoding used, as much as possible. Unfortunately, on the server that is misbehaving, it is the one where I don't

Re: [PHP] Re: This is the kind of [expletives deleted] answer that is certain to prevent bugs being reported.

2009-07-25 Thread Per Jessen
Lupus Michaelis wrote: Per Jessen wrote: See http://bugs.php.net/?id=48612 I don't understand too the answer. For me it is obvious it is a bug because it breaks the system locale behaviour. Thanks, I'm glad I'm not alone in thinking this. /Per -- Per Jessen, Zürich (18.1°C) --

Re: [PHP] Re: This is the kind of [expletives deleted] answer that is certain to prevent bugs being reported.

2009-07-25 Thread Tom Worster
On 7/25/09 6:27 AM, Per Jessen p...@computer.org wrote: Lupus Michaelis wrote: Per Jessen wrote: See http://bugs.php.net/?id=48612 I don't understand too the answer. For me it is obvious it is a bug because it breaks the system locale behaviour. Thanks, I'm glad I'm not alone in

[PHP] Language translation

2009-07-25 Thread Skip Evans
Hey all, We got a new project and language translation of content is a major priority. I've googled around and seen lots of options, but I'd like to hear from the list about more real world experiences about what some of you found and what both you as a coder and the client were most

Re: [PHP] This is the kind of [expletives deleted] answer that iscertain to prevent bugs being reported.

2009-07-25 Thread Paul M Foster
On Fri, Jul 24, 2009 at 04:07:54PM -0500, Greg Beaver wrote: Robert Cummings wrote: I understand where you're coming from, and I've been on the same road before with PHP bug reports. And while I remember being really annoyed, especially when it turned out to actually be a bug, I have to

Re: [PHP] prepending concatenating assignment operator

2009-07-25 Thread LinuxManMikeC
On Fri, Jul 24, 2009 at 8:53 PM, Daniel Kolbokolb0...@umn.edu wrote: Hello, I know the appending concatenating assignment operator: $str_name = Foobar; $str_name .= Sr; echo $str_name;//Foobar Sr But is there a shortcut assignment operator for prepending concatenation? $str_name =