本文整理汇总了PHP中State::getName方法的典型用法代码示例。如果您正苦于以下问题:PHP State::getName方法的具体用法?PHP State::getName怎么用?PHP State::getName使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类State
的用法示例。
在下文中一共展示了State::getName方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: testGetName
public function testGetName()
{
$state = new State('stateName', [], []);
$this->assertEquals('stateName', $state->getName());
}
示例2: State
echo $row['name'];
?>
</option>
<?php
}
?>
</select>
</div>
</td>
</tr>
<?php
$id = Request::get("id");
if (is_numeric($id) && $id > 0) {
$stateObj = new State();
$stateObj->set("state_id", $id);
$result = $stateObj->getName();
if (count($result)) {
$row = $result[0];
$state_id = $row['id'];
$country_id = $row['country_id'];
$state_name = $row['name'];
$state_status = $row['active'];
}
}
?>
<tr>
<td><label class="control-label" for="selectError">State</label></td>
<td><div class="input-group" style="width: 50%">
<span class="input-group-addon"></span>
<input type="text" name="state_name" value="<?php
echo $state_name;
示例3: compareState
/**
* Return if two state objects are equals
*
* @param State $state1 State 1
* @param State $state2 State 2
* @return boolean result
*/
static function compareState($state1 = null, $state2 = null)
{
if ($state1 === null || $state2 === null) {
return false;
} else {
if ($state1->getName() == $state2->getName() && $state1->getShortName() == $state2->getShortName() && $state1->getCountry() == $state2->getCountry()) {
return true;
} else {
return false;
}
}
}