用于匹配精确字符串的PHP条件

时间:2013-03-22 00:32:17

标签: php

我有以下代码,确保在“验证码”文本框中输入的文本长度至少为3个字符,否则会收到错误。如何设置它以使输入的文本必须为“abcd”或者发生错误?

  if(strlen($_POST['captcha']) < 3) {
    $error_message .= 'Please ensure the captcha entered is at least 3 characters long';

1 个答案:

答案 0 :(得分:0)

我假设您也要检查案例,在这种情况下您可以:

if (strcmp($_POST['captcha'], "abcd"))
  $error_message .= "Your captcha does not match!";