本文整理汇总了PHP中Patient::sexDef方法的典型用法代码示例。如果您正苦于以下问题:PHP Patient::sexDef方法的具体用法?PHP Patient::sexDef怎么用?PHP Patient::sexDef使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Patient
的用法示例。
在下文中一共展示了Patient::sexDef方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: isset
class="sex patientrecord_Pre intentionRadioQuestion validate[required] "
value="1" data-errormessage-value-missing="性别必须选择">
<label for="newaddintention_sex1" class="pr20"><?php
echo Patient::sexDef()[1];
?>
士</label>
<input type="radio" name="sex" id="newaddintention_sex0" desc="患者是位"
<?php
echo $sex == 0 ? 'checked' : '';
?>
class="sex patientrecord_Pre intentionRadioQuestion validate[required] "
value="0" data-errormessage-value-missing="性别必须选择" >
<label for="newaddintention_sex0" class="pr20"><?php
echo Patient::sexDef()[0];
?>
士</label>
</p>
<p class="mt20">您是患者本人吗?:
<input type="radio" desc="您是患者本人吗?" id="newaddintention_self"
class="relation patientrecord_Pre intentionRadioQuestion validate[required]"
<?php
echo isset($relation) ? $relation == Patient::RELATION_SELF ? 'checked' : '' : '';
?>
name="relation" value="<?php
echo Patient::RELATION_SELF;
?>
" data-errormessage-value-missing="请选择一个选项">
<label for="newaddintention_self"
class="pr20">是</label>
示例2: foreach
?>
</option>
<?php
}
?>
</select>
</span>
</td>
</tr>
<tr class="h30">
<td>性别</td>
<td>
<span class="fl pl10">
<?php
foreach (Patient::sexDef() as $key => $value) {
?>
<input type="radio" class="ml5" name="patientSex" value = "<?php
echo $key;
?>
" <?php
echo $key == $patient->sex ? 'checked' : '';
?>
>
<span class="ml5">
<?php
echo $value;
?>
</span>
<?php
}