如果我将小胡子生成的变量与实际字符串进行比较,它会显示奇怪的结果。
<?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 中的其他字符串进行比较?有什么帮助吗?