I have a variable $username
that I substring from a url string, which I get from a file.
This is the output of var_dump($username)
:
"tring(18) "honorablevacuum87
if I set $username = "honorablevacuum87"
and I var_dump it, I get:
string(17) "honorablevacuum87"
What is the problem. I am getting insane over this.