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


PHP country::getCountryAndCityNames方法代码示例

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


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

示例1: elseif

 } elseif ($prof_group_id > 0) {
     $profs = professions::GetProfs($prof_group_id);
     $filter_prof = array();
     foreach ($profs as $prof) {
         $filter_prof[1][$prof['id']] = 1;
     }
 }
 $filter = array("is_pro" => $is_pro, 'prof' => $filter_prof);
 $string_professions = '';
 if ($action == "search_advanced") {
     $filter = array("active" => "t", "prof" => $filter_prof, "cost_type" => intval(@$_POST['cost_type_db_id']), "from_cost" => $from_cost, "to_cost" => $to_cost, "curr_type" => intval(@$_POST['curr_type_db_id']), "exp" => is_array($_POST['exp']) ? array_map("intval", $_POST['exp']) : @$_POST['exp'], "exp_from" => $exp[0], "exp_to" => $exp[1], "age" => is_array($_POST['age']) ? array_map("intval", $_POST['age']) : @$_POST['age'], "age_from" => $age[0], "age_to" => $age[1], "country" => (int) @$_POST['location_columns'][0], "city" => (int) @$_POST['location_columns'][1], "in_office" => (bool) @$_POST['in_office'], "in_fav" => (bool) @$_POST['in_fav'], "only_free" => (bool) @$_POST['only_free'], "is_pro" => $is_pro, "is_verify" => (bool) @$_POST['is_verify'], "is_preview" => (bool) @$_POST['is_preview'], "sbr_is_positive" => (bool) @$_POST['sbr_is_positive'], "sbr_not_negative" => (bool) @$_POST['sbr_not_negative'], "opi_is_positive" => (bool) @$_POST['sbr_is_positive'], "opi_not_negative" => (bool) @$_POST['sbr_not_negative']);
     if ($filter['cost_type']) {
         $filter['cost'][] = array('cost_type' => $filter['curr_type'], 'cost_from' => $filter['from_cost'], 'cost_to' => $filter['to_cost'], 'type_date' => $filter['cost_type']);
     }
     $countryObj = new country();
     $countryCityName = $countryObj->getCountryAndCityNames($filter['country'], $filter['city']);
     $countryCityName = @$countryCityName['name'];
 }
 if (!empty($filter["prof"]) && is_array($filter["prof"][1])) {
     $raw_professions = professions::GetProfessionsTitles(array_keys($filter["prof"][1]));
     $a_professions = array();
     foreach ($raw_professions as $profession_item) {
         $a_professions[$profession_item["name"]] = '(@name_prof "' . $profession_item["name"] . '" | @additional_specs "' . $profession_item["name"] . '")';
     }
     $string_professions = '(' . join(" | ", $a_professions) . ')';
 }
 $string_query = $search_string;
 // @todo Кажется, это никогда не используется?
 $string_query .= !empty($string_professions) ? ' ' . $string_professions : '';
 $type = 'users_ext';
 require_once $_SERVER['DOCUMENT_ROOT'] . "/classes/search/search_ext.php";
开发者ID:Nikitian,项目名称:fl-ru-damp,代码行数:31,代码来源:index.php


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