1

I would like to place a RegEx Code in PHP code to validate a password. Example below of current code:

if (strlen($password) && !Zend_Validate::is($password, 'StringLength', array(6))) {
 $errors[] = Mage::helper('customer')->__('The minimum password length is %s', 6);
}

I would like to replace the array(6) with this regular expression with preg_match:

preg_match("/(?=.*[\d])(?=.*[a-z])(?=.*[A-Z])(?=.*[!@#$%^&])[0-9a-zA-Z!@#$%^&]{10,16}/", $input_line, $output_array);
Raphael at Digital Pianism
70.8k37 gold badges192 silver badges357 bronze badges
asked Sep 15, 2016 at 15:24

2 Answers 2

2
if (strlen($password) && !Zend_Validate::is($password, 'Regex', array('/(?=.*[\d])(?=.*[a-z])(?=.*[A-Z])(?=.*[!@#$%^&])[0-9a-zA-Z!@#$%^&]{10,16}/')) {
 $errors[] = Mage::helper('customer')->__('your error message here');
}
answered Sep 15, 2016 at 15:30
4
3

I reckon you should use Zend_Validate_Regex in that case.

You could do:

$validate = new Zend_Validate_Regex("/(?=.*[\d])(?=.*[a-z])(?=.*[A-Z])(?=.*[!@#$%^&])[0-9a-zA-Z!@#$%^&]{10,16}/");
if (strlen($password) && !$validate->isValid($password)) {
}

Alternative

You can also do:

if (strlen($password) && !Zend_Validate::is($password, 'Regex', array("/(?=.*[\d])(?=.*[a-z])(?=.*[A-Z])(?=.*[!@#$%^&])[0-9a-zA-Z!@#$%^&]{10,16}/"))) {
}
answered Sep 15, 2016 at 15:28
1
  • Thank you @RaphaelatDigitalPianism I will test the code. Commented Sep 15, 2016 at 16:11

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.