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


PHP Flux::getEquipLocationList方法代碼示例

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


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

示例1: elseif

     $errorMessage = 'Attack must be a number.';
 } elseif (!is_null($matk) && !ctype_digit($matk)) {
     $errorMessage = 'MATK must be a number.';
 } elseif (!is_null($defense) && !ctype_digit($defense)) {
     $errorMessage = 'Defense must be a number.';
 } elseif (!is_null($range) && !ctype_digit($range)) {
     $errorMessage = 'Range must be a number.';
 } elseif (!is_null($weaponLevel) && !ctype_digit($weaponLevel)) {
     $errorMessage = 'Weapon level must be a number.';
 } elseif (!is_null($equipLevelMin) && !ctype_digit($equipLevelMin)) {
     $errorMessage = 'Minimum equip level must be a number.';
 } elseif (!is_null($equipLevelMax) && !ctype_digit($equipLevelMax)) {
     $errorMessage = 'Maximum equip level must be a number.';
 } else {
     if (empty($errorMessage) && is_array($equipLocs)) {
         $locs = Flux::getEquipLocationList();
         foreach ($equipLocs as $bit) {
             if (!array_key_exists($bit, $locs)) {
                 $errorMessage = 'Invalid equip location specified.';
                 $equipLocs = null;
                 break;
             }
         }
     }
     if (empty($errorMessage) && is_array($equipUpper)) {
         $upper = Flux::getEquipUpperList();
         foreach ($equipUpper as $bit) {
             if (!array_key_exists($bit, $upper)) {
                 $errorMessage = 'Invalid equip upper specified.';
                 $equipUpper = null;
                 break;
開發者ID:mleo1,項目名稱:rAFluxCP,代碼行數:31,代碼來源:add.php

示例2: equipLocations

 /**
  *
  */
 public function equipLocations($equipLoc)
 {
     $locations = array();
     $equipLoc = (int) $equipLoc;
     $equipLocs = Flux::getEquipLocationList();
     foreach ($equipLocs as $bit => $name) {
         if ($equipLoc & $bit) {
             $locations[] = $name;
         }
     }
     return $locations;
 }
開發者ID:AcidSlide,項目名稱:FluxCP,代碼行數:15,代碼來源:Template.php

示例3: foreach

?>
/>Yes</label>
				<label style="display: inline"><input type="radio" name="refineable" value="0"<?php 
if (!$refineable) {
    echo ' checked="checked"';
}
?>
 />No</label>
			</td>
		</tr>
		<tr>
			<th><label for="equip_locations">Equip Locations</label></th>
			<td colspan="3">
				<select class="multi-select" name="equip_locations[]" id="equip_locations" size="5" multiple="multiple">
				<?php 
foreach (Flux::getEquipLocationList() as $bit => $location) {
    ?>
					<option value="<?php 
    echo htmlspecialchars($bit);
    ?>
"<?php 
    if ($equipLocs && in_array($bit, $equipLocs)) {
        echo ' selected="selected"';
    }
    ?>
>
						<?php 
    echo htmlspecialchars($location);
    ?>
					</option>
				<?php 
開發者ID:mleo1,項目名稱:rAFluxCP,代碼行數:31,代碼來源:add.php


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