口ひげが生成した変数を実際の文字列と比較すると、奇妙な結果が表示されます。
<?php
$username = {{userName}};
echo $username; // john
//if i compare with the string it returns false
if ($username == 'john') //return false
//if i print strlen($username) it returns 14 but it should return 4
?>
PHPで他の文字列と比較できるように、それを通常の文字列に変換する方法は? 助けはありますか?