classkit_import

(PECL classkit >= 0.3)

classkit_importImport new class method definitions from a file

˵��

classkit_import ( string $filename ) : array

Note: �˺�����������������ǰ�������У����������ϣ��ķ�����

Warning

�˺�����ʵ�����ġ��˺����ı��󣬰������Ƽ�������ĵ���������δ���� PHP �����汾��δ֪ͨ�ͱ��޸ġ�ʹ�ñ����������Ե� ��

����

filename

The filename of the class method definitions to import

����ֵ

Associative array of imported methods

����

Example #1 classkit_import() example

<?php
// file: newclass.php
class Example {
    function 
foo() {
        return 
"bar!\n";
    }
}
?>
<?php
// requires newclass.php (see above)
class Example {
    function 
foo() {
        return 
"foo!\n";
    }
}

$e = new Example();

// output original
echo $e->foo();

// import replacement method
classkit_import('newclass.php');

// output imported
echo $e->foo();

?>

�������̻������

foo!
bar!

�μ�