vote up 1 vote down star

Or: Should I optimize my string-operations in PHP? I tried to ask PHP's manual about it, but I didn't get any hints to anything.

flag

73% accept rate
I would suggest you don't worry about it unless/until it becomes a problem. It's pretty unusual for string operations to be the bottleneck in any modern web application. – Eli Jan 30 at 18:57

2 Answers

vote up 8 vote down check

PHP already optimises it - variables are assigned using copy-on-write, and objects are passed by reference. In PHP 4 it doesn't, but nobody should be using PHP 4 for new code anyway.

link|flag
ive confirmed this w/ one of the PHP developers – arin sarkissian Feb 1 at 2:17
I really wish Rich B would stop going around converting valid (British) English spelling into US English... Not all of us are from the US. – James Burgess Mar 3 at 22:33
I wish he'd make like a tree, personally. – Ant P Mar 3 at 23:02
vote up 0 vote down

A quick google would seem to suggest that they are mutable, but the preferred practice is to treat them as immutable.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.