(PECL geoip >= 1.0.4)
geoip_time_zone_by_country_and_region — ���ع��Һ͵�����ʱ��
$country_code
[, string $region_code
] ) : stringgeoip_time_zone_by_country_and_region() �������᷵������һ��ߵ������Ӧ��ʱ����
������������������ÿ���ݶ�Ӧ��������ĸ����д�����ڼ��ô�������������ĸ��ɵ�ÿ��ʡ���������롣
������������������GeoIP ʹ�� FIPS ������10��4λ�Ĵ�������ʾ������������Ե���������� » http://www.maxmind.com/app/fips10_4 �鿴��ϸ��Ϣ��
�ú���ֻ�� GeoIP 1.4.1�汾���ϵĿ�ſ��á����ҽ������������Դ��ֱ�Ӵ� GeoIP ���л�ȡ�ģ������Ǵ��κ����ݿ��С�
country_code
��������ĸ��ɵĹ��Ҵ��� (�μ� geoip_country_code_by_name())
region_code
��������ĸ��ɵĵ������� (�μ� geoip_region_by_name())
�ɹ������ص������֣���������Ϣδ�ҵ��� FALSE
��
Example #1 geoip_time_zone_by_country_and_region() ʹ�������ͼ��ô�����ķ�����
�������̽����ӡ���Ҽ��Ϊ CA (���ô�)���������Ϊ QC (������)��ʱ����
<?php
$timezone = geoip_time_zone_by_country_and_region('CA', 'QC');
if ($timezone) {
echo 'Time zone for CA/QC is: ' . $timezone;
}
?>
�������̻������
Time zone for CA/QC is: America/Montreal
Example #2 geoip_time_zone_by_country_and_region() ʹ�� FIPS ����ķ�����
�������̽����ӡ���Ҽ��Ϊ JP (�ձ�),��������Ϊ 01��ʱ����
<?php
$timezone = geoip_time_zone_by_country_and_region('JP', '01');
if ($timezone) {
echo 'Time zone for JP/01 is: ' . $timezone;
}
?>
�������̻������
Time zone for JP/01 is: Asia/Tokyo