本文整理汇总了PHP中SessionController::getCellphone方法的典型用法代码示例。如果您正苦于以下问题:PHP SessionController::getCellphone方法的具体用法?PHP SessionController::getCellphone怎么用?PHP SessionController::getCellphone使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SessionController
的用法示例。
在下文中一共展示了SessionController::getCellphone方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: UserDao
<?php
include_once 'SessionController.php';
include_once $_SERVER['DOCUMENT_ROOT'] . '/casarover/application/common/common_tools.php';
include_once $_SERVER['DOCUMENT_ROOT'] . '/casarover/application/models/UserDao.php';
?>
<?php
$userDao = new UserDao();
$sessionController = new SessionController();
$base_url = getBaseUrl();
$verify_code = $sessionController->getCode();
$phone_session = $sessionController->getCellphone();
$phone = $_POST['cellphone_number'];
$password = $_POST['password'];
$verify_user_code = $_POST['verify_code'];
// user with the same cellphone number.
// 已存在用户。
$user = $userDao->getByPhone($phone);
// 检查手机号码
if (empty($phone_session)) {
// Not found in session
header('Location:../../website/error.php?info=获取不到保存的手机号码!');
} else {
if ($phone != $phone_session) {
header('Location:../../website/error.php?info=手机号码前后不一致!');
} else {
if (empty($verify_user_code) || empty($verify_code) || $verify_code != $verify_user_code) {
header('Location:../../website/error.php?info=验证码错误!');
} else {
if ($user) {