Your IP : 216.73.216.48


Current Path : /hdd/hdd21/main/php/php-7.3.8/tests/classes/
Upload File :
Current File : //hdd/hdd21/main/php/php-7.3.8/tests/classes/autoload_010.phpt

--TEST--
Ensure implements does trigger autoload.
--FILE--
<?php
spl_autoload_register(function ($name) {
  echo "In autoload: ";
  var_dump($name);
});

class C implements UndefI
{
}
?>
--EXPECTF--
In autoload: string(6) "UndefI"

Fatal error: Interface 'UndefI' not found in %s on line %d