geoip redirection for superforex.com.au
Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
|
- --TEST--
- Check that Reader class is not final
- --SKIPIF--
- <?php if (!extension_loaded('maxminddb')) {
- echo 'skip';
- } ?>
- --FILE--
- <?php
- $reflectionClass = new \ReflectionClass('MaxMind\Db\Reader');
- var_dump($reflectionClass->isFinal());
- ?>
- --EXPECT--
- bool(false)
|