本文整理汇总了PHP中Stat::getId方法的典型用法代码示例。如果您正苦于以下问题:PHP Stat::getId方法的具体用法?PHP Stat::getId怎么用?PHP Stat::getId使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Stat
的用法示例。
在下文中一共展示了Stat::getId方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: testFind
function testFind()
{
//Arrange
$str = 2;
$dex = 2;
$con = 2;
$intel = 2;
$wis = 2;
$cha = 2;
$init = 2;
$max_hp = 2;
$speed = 2;
$ac = 2;
$acrobatics = 2;
$arcana = 2;
$animal_handling = 2;
$athletics = 2;
$deception = 2;
$history = 2;
$insight = 2;
$intimidation = 2;
$investigation = 2;
$medicine = 2;
$nature = 2;
$perception = 2;
$performance = 2;
$persuasion = 2;
$proficiency = 2;
$religion = 2;
$sleight_of_hand = 2;
$stealth = 2;
$survival = 2;
$test_stat = new Stat($ac, $acrobatics, $animal_handling, $arcana, $athletics, $cha, $con, $deception, $dex, $history, $init, $insight, $intel, $intimidation, $investigation, $max_hp, $medicine, $nature, $perception, $performance, $persuasion, $proficiency, $religion, $speed, $sleight_of_hand, $stealth, $str, $survival, $wis);
$test_stat->save();
$str2 = 2;
$dex2 = 2;
$con2 = 2;
$int2 = 2;
$wis2 = 2;
$cha2 = 2;
$init2 = 2;
$max_hp2 = 2;
$speed2 = 2;
$ac2 = 2;
$acrobatics2 = 2;
$arcana2 = 2;
$animal_handling2 = 2;
$athletics2 = 2;
$deception2 = 2;
$history2 = 2;
$insight2 = 2;
$intimidation2 = 2;
$investigation2 = 2;
$medicine2 = 2;
$nature2 = 2;
$perception2 = 2;
$performance2 = 2;
$persuasion2 = 2;
$proficiency2 = 2;
$religion2 = 2;
$sleight_of_hand2 = 2;
$stealth2 = 2;
$survival2 = 2;
$test_stat2 = new Stat($ac2, $acrobatics2, $animal_handling2, $arcana2, $athletics2, $cha2, $con2, $deception2, $dex2, $history2, $init2, $insight2, $int2, $intimidation2, $investigation2, $max_hp2, $medicine2, $nature2, $perception2, $performance2, $persuasion2, $proficiency2, $religion2, $speed2, $sleight_of_hand2, $stealth2, $str2, $survival2, $wis2);
$test_stat2->save();
//Act
$result = Stat::find($test_stat->getId());
//Assert
$this->assertEquals($test_stat, $result);
}
示例2: run
static function run()
{
// DESCRIPTION :
$description = new Description($_SESSION['name'], $_SESSION['gender'], $_SESSION['age'], $_SESSION['alignment'], $_SESSION['height'], $_SESSION['eye_color'], $_SESSION['hair_color'], $_SESSION['skin_tone'], $_SESSION['other'], null);
$description->save();
$description_id = $description->getId();
// STAT VARIABLES :
$dex = $_SESSION['dex'];
$dex_mod = Stat::getModifier($dex);
$con = $_SESSION['con'];
$con_mod = Stat::getModifier($con);
$str = $_SESSION['str'];
$str_mod = Stat::getModifier($str);
$wis = $_SESSION['wis'];
$wis_mod = Stat::getModifier($wis);
$int = $_SESSION['int'];
$int_mod = Stat::getModifier($int);
$cha = $_SESSION['cha'];
$cha_mod = Stat::getModifier($cha);
$initiative = $dex_mod;
// MAKES A CLASS VARIABLE, MAXHP, AC, BACKGROUND ID :
if ($_SESSION['class'] == 1) {
$class = "cleric";
$class_hp = 8;
$class_id = 1;
} elseif ($_SESSION['class'] == 2) {
$class = "fighter";
$class_hp = 10;
$class_id = 2;
} elseif ($_SESSION['class'] == 3) {
$class = "rogue";
$class_hp = 8;
$class_id = 3;
} elseif ($_SESSION['class'] == 4) {
$class = "wizard";
$class_hp = 6;
$class_id = 4;
}
$max_hp = $con_mod + $class_hp;
$ac = 10 + $dex_mod;
$proficiency_array = $_SESSION['skill'];
$background_id = $_SESSION['background'];
$proficiency_array = $_SESSION['skill'];
$skill_ids = array();
foreach ($proficiency_array as $proficiency) {
if ($proficiency == "Acrobatics") {
$skill_id = 1;
} elseif ($proficiency == "Animal Handling") {
$skill_id = 2;
} elseif ($proficiency == "Arcana") {
$skill_id = 3;
} elseif ($proficiency == "Athletics") {
$skill_id = 4;
} elseif ($proficiency == "Deception") {
$skill_id = 5;
} elseif ($proficiency == "History") {
$skill_id = 6;
} elseif ($proficiency == "Insight") {
$skill_id = 7;
} elseif ($proficiency == "Intimidation") {
$skill_id = 8;
} elseif ($proficiency == "Investigation") {
$skill_id = 9;
} elseif ($proficiency == "Medicine") {
$skill_id = 10;
} elseif ($proficiency == "Nature") {
$skill_id = 11;
} elseif ($proficiency == "Perception") {
$skill_id = 12;
} elseif ($proficiency == "Performance") {
$skill_id = 13;
} elseif ($proficiency == "Persuasion") {
$skill_id = 14;
} elseif ($proficiency == "Religion") {
$skill_id = 15;
} elseif ($proficiency == "Sleight of Hand") {
$skill_id = 16;
} elseif ($proficiency == "Stealth") {
$skill_id = 17;
} elseif ($proficiency == "Survival") {
$skill_id = 18;
}
array_push($skill_ids, $skill_id);
}
// MAKES A RACE VARIABLE, SPEED :
if ($_SESSION['race'] == 1) {
$race = "human";
$speed = 30;
$race_id = 1;
} elseif ($_SESSION['race'] == 2) {
$race = "hill dwarf";
$speed = 25;
$race_id = 2;
} elseif ($_SESSION['race'] == 3) {
$race = "mountain dwarf";
$speed = 25;
$race_id = 3;
} elseif ($_SESSION['race'] == 4) {
$race = "high elf";
$speed = 30;
//.........这里部分代码省略.........