php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Return to Bug #60478
Patch stream_context_set_option_error_002.phpt revision 2011-12-09 09:50 UTC by jm at jmfontaine dot net
Patch stream_context_set_option_error_001.phpt revision 2011-12-09 09:50 UTC by jm at jmfontaine dot net
Patch stream_context_set_option_basic.phpt revision 2011-12-09 09:50 UTC by jm at jmfontaine dot net
Patch spl_autoload_call_basic.phpt revision 2011-12-09 09:49 UTC by jm at jmfontaine dot net

Patch spl_autoload_call_basic.phpt for Testing related Bug #60478

Patch version 2011-12-09 09:49 UTC

Return to Bug #60478 | Download this patch
Patch Revisions:

Developer: jm@jmfontaine.net

--TEST--
spl_autoload_call() function - basic test for spl_autoload_call()
--CREDITS--
Jean-Marc Fontaine <jean-marc.fontaine@alterway.fr>
# Alter Way Contribution Day 2011
--FILE--
<?php
function customAutolader($class) {
    require_once __DIR__ . '/testclass.class.inc';
}
spl_autoload_register('customAutolader');

spl_autoload_call('TestClass');
var_dump(class_exists('TestClass', false));
?>
--EXPECTF--
%stestclass.class.inc
bool(true)
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Tue Apr 16 08:01:32 2024 UTC