我试图从各个方向修剪空格,但允许在键入的单词之间使用单个空格?
我正在使用以下代码:
if(!preg_match('/^[A-Za-z0-9_]+$/',$_POST['username'])){
if($stmt->execute()){
$_SESSION['notmet'] = "Invalid username. You can only use letters and/or digits";
header('location: index.php');}}
我在这里到底出了什么问题?