本文整理汇总了PHP中Clients::clientCountry方法的典型用法代码示例。如果您正苦于以下问题:PHP Clients::clientCountry方法的具体用法?PHP Clients::clientCountry怎么用?PHP Clients::clientCountry使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Clients
的用法示例。
在下文中一共展示了Clients::clientCountry方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: Clients
$client_mobile = $client->contactno();
$client_email = $client->email();
$client_message = $client->message();
$client_city = $client->city();
$client_country = $client->country();
$client_address = $client->address1() . " " . $client->address2();
} else {
$client = new Clients();
$client->setClientId($reservations->reservationClientId());
$client->extractor($client->getClientFromId());
$client_name = $client->clientFirstName() . " " . $client->clientLastName();
$client_mobile = $client->clientPhoneMobile();
$client_email = $client->clientEmail();
$client_message = "";
$client_city = $client->clientCity();
$client_country = $client->clientCountry();
$client_address = $client->clientAddress();
}
$hotels->setHotelId($reservations->reservationHotelId());
$hotels->extractor($hotels->getHotelFromId());
$date = date("Y-m-d");
// current date
$new_date = strtotime(date("Y-m-d", strtotime($date)) . " +3 month");
$expire_date = date("Y-m-d", $new_date);
$country = new country();
$country->setCountryId($client_country);
$country->extractor($country->getCountryFromId());
$rooms->setRoomTypeId($reservations->reservationHotelRoomTypeId());
$rooms->extractor($rooms->getHotelRoomTypeFromId());
$hotel_name = $hotels->hotelName();
$hotel_url = $hotels->hotelSeoUrl();