當前位置: 首頁>>代碼示例>>PHP>>正文


PHP model::getById方法代碼示例

本文整理匯總了PHP中model::getById方法的典型用法代碼示例。如果您正苦於以下問題:PHP model::getById方法的具體用法?PHP model::getById怎麽用?PHP model::getById使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在model的用法示例。


在下文中一共展示了model::getById方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: getById

 public function getById($id)
 {
     parent::getById($id);
     // TODO: Change the autogenerated stub
 }
開發者ID:kRojecki,項目名稱:DelegationSystem,代碼行數:5,代碼來源:delegationRoad.php

示例2: rand

        }
        $password = '';
        for ($i = 0; $i <= 6; $i++) {
            if (rand(1, 2) == 1) {
                $password .= $letters[rand(1, 40)];
            } else {
                $password .= rand(1, 9);
            }
        }
        $row['user_pass'] = md5($password);
        if (strtolower($_POST['user_email']) == strtolower($u['user_email']) && $_POST['user_login'] == $u['user_login']) {
            $row = array();
            unset($password);
            $row['ID'] = $u['ID'];
        }
        $row['sdate'] = date('Y-m-d H:i:s');
        $id = $model->insert($row);
        $user = $model->getById($id);
        require_once ROOT_DIR . 'mail_generator.php';
        send($user['user_email'], 'Here are Your Next Steps', 'subscribe', $user, array('password' => $password));
        $_SESSION['user_email'] = $_POST['user_email'];
        $_SESSION['user_id'] = $id;
        header('Location: challenge/success.php');
    }
}
require_once ROOT_DIR . 'mobile_detect.php';
$detect = new mobile_detect();
if ($detect->isMobile() || $detect->isTablet()) {
    $mobile = true;
}
require_once ROOT_DIR . 'templates/index.php';
開發者ID:novichkovv,項目名稱:candoweightloss,代碼行數:31,代碼來源:index.php

示例3: model

<?php

/**
 * Created by PhpStorm.
 * User: novichkov
 * Date: 24.12.14
 * Time: 21:58
 */
session_start();
require_once 'model.php';
require_once 'mailing_data.php';
$model = new model('wp_users');
$user = $model->getById($_GET['uid']);
if (!$user || !md5($user['user_email']) == $_GET['hash']) {
    echo 'wrong mail';
    exit;
    //    header('Location: http://1000lbschallenge.com/wp-login/');
    //    exit;
}
if ($_GET['day'] > $user['sent']) {
    echo 'wrong day';
    //    header('Location: http://1000lbschallenge.com/wp-login/');
    //    exit;
}
$subject = $data[$_GET['day']]['subject'];
if (!$subject) {
    echo 'no subject';
    exit;
    //    header('Location: http://1000lbschallenge.com/404/');
    //    exit;
}
開發者ID:novichkovv,項目名稱:candoweightloss,代碼行數:31,代碼來源:home.php


注:本文中的model::getById方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。