mirror of
https://github.com/php-win-ext/php-sdk-binary-tools.git
synced 2026-03-25 09:32:10 +01:00
8 lines
111 B
PHP
8 lines
111 B
PHP
<?php
|
|
|
|
function __autoload($name)
|
|
{
|
|
require_once dirname(__FILE__) . DIRECTORY_SEPARATOR . $name . ".php";
|
|
}
|
|
|