当前位置:首页 > PHP教程 > php应用 > 列表

php解决input输入多个空格只显示一个的问题

发布:smiling 来源: PHP粉丝网  添加日期:2013-11-29 21:50:05 浏览: 评论:0 

这里简单的介绍了关于php解决input输入多个空格只显示一个的问题,我们利用了chr(32)来替换成html空格符,实例代码如下:

  1. <body> 
  2. <form id="form1" name="form1" method="post" action=""
  3.   <label for="textfield"></label> 
  4.   <input type="text" name="txt" id="txt" /> 
  5.   <input type="submit" name="button" id="button" value="提交" /> 
  6. </form> 
  7. </body> 
  8. </html> 
  9. <? 
  10. if$_POST ) 
  11.  $txt = $_POST['txt']; 
  12.  echo $txt.'<br />'
  13.  echo str_replace(chr(32),'&nbsp;',$txt); 
  14. ?> 

Tags: input输入空格 问题

分享到: