| re: PHP5 questions
"Philipp Lenssen" <info@outer-court.com> schrieb:
[color=blue]
> I noticed there's an error in PHP when it receives form data. It seems
> to precede various characters with "\". I was wondering if that's about
> to get fixed in PHP5, or already is fixed in PHP4? (Or is this somehow
> not an error?)[/color]
No, this is no error. You might have activated magic_quotes in your
php.ini. If you want to continue this, then use stripslashes() with the
incoming data.
[color=blue]
> Also, I was wondering when/ if PHP will include more object-oriented
> functions, like $myString.replace($find, $replaceWith). (I sometimes
> wonder if I need to use the first or second or third parameter or what
> and it takes some more seconds to check PHP.net.)[/color]
No.
[color=blue]
> Next, are there any plans to remove the "$" in front of variables?[/color]
No.
[color=blue]
> Will there be real private members/ functions in PHP5 when using
> classes/ objects?[/color]
Yes.
Regards,
Matthias |