gpt4 book ai didi

php - 请帮助我使用 php trim 函数

转载 作者:太空宇宙 更新时间:2023-11-03 11:16:29 24 4
gpt4 key购买 nike

trim 函数删除了所有更多的空格,但是当尝试在数据库中保存数据时,它保存了更多的空格,为什么请帮助我,但我要记下所有代码和数据库构建以帮助成为

CREATE TABLE  `test`.`user` (
`id` INT( 11 ) NOT NULL AUTO_INCREMENT PRIMARY KEY ,
`username` VARCHAR( 30 ) NOT NULL
) ENGINE = MYISAM ;

////////////////////////
<?php
$conn = mysql_connect("localhost","root","");
if(!$conn){
die("there is problem in" .mysql_error());
}
$select_db = mysql_select_db("test",$conn);
if(!$select_db){
die("there is problem in" .mysql_error());
}
?>
<?php
if(isset($_POST["submit"])){
$fname = trim($_POST["text"]);
$name = trim($fname);
$insert = mysql_query("insert into user(username)values('{$name}')");
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<form action="" method="post">
<input type="text" name="text" value=""/>
<input type="submit" name="submit" value="submit"/>
</form>
<body>
</body>
</html>

最佳答案

trim 函数仅删除前导空格和尾随空格,而不是 文本中的双空格。您可以为此使用 preg_replace,例如:

$output = preg_replace('!\s+!', ' ', $input);

来源:php Replacing multiple spaces with a single space

关于php - 请帮助我使用 php trim 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4696154/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com