Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > afe0256598d60fd213d2dc881c4f472d > files > 20

php-geoip-1.0.8-7.mga4.x86_64.rpm

--TEST--
Checking timezone info with (some) empty fields
--SKIPIF--
<?php if (!extension_loaded("geoip")) print "skip"; ?>
--POST--
--GET--
--FILE--
<?php

var_dump(geoip_time_zone_by_country_and_region('CA',''));
var_dump(geoip_time_zone_by_country_and_region('CA',NULL));
var_dump(geoip_time_zone_by_country_and_region('CA'));
var_dump(geoip_time_zone_by_country_and_region(NULL,''));
var_dump(geoip_time_zone_by_country_and_region(NULL,NULL));

?>
--EXPECTF--
string(%d) "America/%s"
string(%d) "America/%s"
string(%d) "America/%s"

Warning: geoip_time_zone_by_country_and_region(): You need to specify at least the country code. in %s on line %d
bool(false)

Warning: geoip_time_zone_by_country_and_region(): You need to specify at least the country code. in %s on line %d
bool(false)