当前位置: 首页>>代码示例>>PHP>>正文


PHP person::add方法代码示例

本文整理汇总了PHP中person::add方法的典型用法代码示例。如果您正苦于以下问题:PHP person::add方法的具体用法?PHP person::add怎么用?PHP person::add使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在person的用法示例。


在下文中一共展示了person::add方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: validate

     //Good, no duplicate in database
 } else {
     $message = "Record already exists with the same primary identifiers!";
 }
 if ($message == "" and empty($arr_error)) {
     $dbh_citizen->add($arr_form_data);
     $citizen_id = $dbh_citizen->auto_id;
     require_once 'subclasses/validate.php';
     $dbh_citizen = new validate();
     for ($a = 0; $a < $validate_count; $a++) {
         $param = array('proof_of_id' => $cf_validate_proof_of_id[$a], 'proof_of_address' => $cf_validate_proof_of_address[$a], 'citizen_id' => $citizen_id, 'status' => $cf_validate_status[$a]);
         $dbh_citizen->add($param);
     }
     require_once 'subclasses/person.php';
     $dbh_person = new person();
     $dbh_person->add($arr_form_data);
     $person_id = $dbh_person->auto_id;
     $arr_form_data['person_id'] = $person_id;
     require 'password_crypto.php';
     //Hash the password using default Cobalt password hashing technique
     $hashed_password = cobalt_password_hash('NEW', $password, $username, $new_salt, $new_iteration, $new_method);
     $arr_form_data['password'] = $hashed_password;
     $arr_form_data['salt'] = $new_salt;
     $arr_form_data['iteration'] = $new_iteration;
     $arr_form_data['method'] = $new_method;
     $arr_form_data['role_id'] = 3;
     $arr_form_data['skin_id'] = 1;
     require_once 'subclasses/user.php';
     $dbh_user = new user();
     $dbh_user->add($arr_form_data);
     //Permissions from role, if role was chosen
开发者ID:seans888,项目名称:Bgy-Project,代码行数:31,代码来源:register.php

示例2: add

        return $res;
    }
    public function add($num1, $num2)
    {
        return $num1 + $num2;
    }
    public function findMax($arr)
    {
        //先假设数组中的第一个数,是最大的数。
        $maxVal = $arr[0];
        //这是最大数的下标值。
        $maxIdex = 0;
        for ($i = 1; $i < count($arr); $i++) {
            //如果认为的第一个最大的数小于了$i,则证明第一个数, 不是最大的数。
            if ($maxVal < $arr[$i]) {
                $maxVal = $arr[$i];
                $maxIdex = $i;
            }
        }
        return $maxVal;
    }
}
$p1 = new person();
$p1->speak();
$res = $p1->count1();
echo "计算结果是=" . $res;
$res = $p1->count2(5);
echo "<br/>计算结果是=" . $res;
echo "<br/>21+12=" . $p1->add(21, 12);
$myarr = array(21, 34, 45, 65, -2, -9);
echo "<br/>最大的下标值是" . $p1->findMax($myarr);
开发者ID:jimmyZRone,项目名称:test-ssh-key,代码行数:31,代码来源:person.class.php


注:本文中的person::add方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。