mirror of
https://github.com/php-win-ext/php-sdk-binary-tools.git
synced 2026-03-24 17:12:12 +01:00
16 lines
237 B
PHP
16 lines
237 B
PHP
<?php
|
|
|
|
function __autoload($name)
|
|
{
|
|
require_once dirname(__FILE__) . DIRECTORY_SEPARATOR . $name . ".php";
|
|
}
|
|
|
|
/*
|
|
* Local variables:
|
|
* tab-width: 4
|
|
* c-basic-offset: 4
|
|
* End:
|
|
* vim600: sw=4 ts=4 fdm=marker
|
|
* vim<600: sw=4 ts=4
|
|
*/
|