Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我必须在文本框中显示一个 cookie 值, 但是该值在两边都有很多空间 我正在应用 trim() 但仍然没有修复
< ? php uName=""; if(isset($_COOKIE["uName"])) { $uName=trim($_COOKIE["uName"]);} ?> <input type="text" name="uName" value="<?php echo $uName; ?>">
请修复代码第一行中的错误:
$uName = "";
出于调试目的,我使用本文中描述的函数
我已经解决了。 错误在这里
<input type="text" value="<?php echo $_COOKIE["uName"]; ?>">
现在我已将其替换为
<input type="text" <?php echo "value='".$_COOKIE["uName"]."'"; ?> >
现在工作正常。