How do I strip all spaces out of a string in PHP? [duplicate]

How can I strip / remove all spaces of a string in PHP?

I have a string like $string = "this is my string";

The output should be "thisismystring"

How can I do that?

4 s
4

Leave a Comment