mirror of
https://github.com/php/php-src.git
synced 2024-11-28 12:26:37 +08:00
10 lines
116 B
Plaintext
10 lines
116 B
Plaintext
|
<?php
|
||
|
|
||
|
class autoload_implements implements autoload_interface {
|
||
|
function testFunction()
|
||
|
{
|
||
|
return true;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
?>
|