复制代码 代码如下:
<?php
class A
{
public function __construct()
{
echo 'Got it.';
}
}
复制代码 代码如下:
<?php
require('A.php');
$a = new A();
复制代码 代码如下:
<?php
function __autoload($class)
{
$file = $class . '.php';
if (is_file($file)) {
require_once($file);
}
}
$a = new A();
复制代码 代码如下:
<?php
function loader($class)
{
$file = $class . '.php';
if (is_file($file)) {
require_once($file);
}
}
spl_autoload_register('loader');
$a = new A();
复制代码 代码如下:
<?php
class Loader
{
public static function loadClass($class)
{
$file = $class . '.php';
if (is_file($file)) {
require_once($file);
}
}
}
spl_autoload_register(array('Loader', 'loadClass'));
$a = new A();
新闻热点
疑难解答