CakePHP中的用户注册
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CakePHP中的用户注册相关的知识,希望对你有一定的参考价值。
<?php /** * Class used for user authentication on the league website * */ class User extends AppModel { var $name = 'User'; 'on' => 'create'), 'required' => true, 'message' => 'Please enter a username'), 'message' => 'Passwords do not match'), 'required' => true) ); function confirmPassword($data, $fieldName) { $valid = false; if ($data['password'] == Security::hash(Configure::read('Security.salt') . $this->data['User']['password_confirm'])) { $valid = true; } return $valid; } } ?>
以上是关于CakePHP中的用户注册的主要内容,如果未能解决你的问题,请参考以下文章
Cakephp 3 - 如何在验证过程中检索“表”类中的当前登录用户?