1

我正在收集表单数据,通过 AJAX 调用将其发送到 PHP 验证脚本。问题出在特殊字符上,php 验证脚本没有按预期工作。

HTML:

<input type="text" name="firstName" class="firstName"
       placeholder="[first name]" required autofocus maxlength="25" size="25" />

JS:

$(".button").click(function () {
    var firstName = encodeURIComponent($("input.firstName").val());
    var datastring = "firstName=" + firstName;

    $.ajax({
        type: "POST",
        url: "/scripts/validateSignup.php",
        data: datastring,
        cache: false,
        success: function (errorMessage) {
            //print to screen
        }
    });
});

PHP 验证

$postData = $_POST;

if (Filter::validateString($postData['firstName']) == false) {
    echo "Oops! Some characters used in your first name are not valid.";
}

PHP 过滤器

//Returns true if string is good, false otherwise
public static function validateString($string) {
    $string = trim($string);

    if ($string == null || $string == "") {
        return false;
    } else {
        if (preg_match("/[^\.\,\-\_\'\"\@\?\!\:\;\$\#\%\&\+\= a-zA-Z0-9()]/", $string) == true) {
            return false;
        } else {
            return true;
        }
    }
}

在一个空字符串上,它将错误打印到屏幕上就好了。但是,如果我执行“~!@#$%^&*()”之类的操作,那么即使 preg_match == false 的结果,它也会将字符串视为良好并且不会抛出错误。

4

2 回答 2

0
$string = trim($string);

if ($string == null || $string == "") {
    return false;
} else {
    if (preg_match("/[^\.,\-_'\"@?!:;\$#&\+=\sa-zA-Z0-9\(\)]/", $string) == true) {
        return false;
    } else {
        return true;
    }
}

那是更有效的正则表达式,但不是您想要的结果:您正在检查几乎所有输入,因此它将匹配“abcd”并返回 false。正则表达式有 11 个具有特殊含义的字符,只有那些和 " 需要转义:^$[]()|.*+-

于 2013-08-29T08:18:49.800 回答
0

尝试这个:-

<?php
$string = "tes$%tname"; // invalid string
//$string = "testname"; // valid string

if(test($string) == false)
{
    echo "String is invalid";
}


function test($string){
    $string = trim($string);

    if ($string == null || $string == "") {
        return false;
    } else {
        if (preg_match("/[^\.,\-_'\"@?!:;\$#&\+=\sa-zA-Z0-9\(\)]/",$string) == true) {
            return false;
        } else {
            return true;
        }
    }
}

?>

PHPFiddle 在这里:- http://phpfiddle.org/main/code/cdu-xg2

于 2013-08-30T00:39:33.183 回答