1--TEST-- 2spl_autoload_call() function - basic test for spl_autoload_call() 3--CREDITS-- 4Jean-Marc Fontaine <jean-marc.fontaine@alterway.fr> 5# Alter Way Contribution Day 2011 6--FILE-- 7<?php 8function customAutolader($class) { 9 require_once __DIR__ . '/testclass.class.inc'; 10} 11spl_autoload_register('customAutolader'); 12 13spl_autoload_call('TestClass'); 14var_dump(class_exists('TestClass', false)); 15?> 16--EXPECTF-- 17%stestclass.class.inc 18bool(true) 19