从侧面修剪空白,并在单词之间留出间隔

时间:2019-06-04 19:59:16

标签: php preg-match whitespace

我试图从各个方向修剪空格,但允许在键入的单词之间使用单个空格?

我正在使用以下代码:

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');}}

我在这里到底出了什么问题?

0 个答案:

没有答案