bcompiler_write_class

(PECL bcompiler >= 0.4)

bcompiler_write_classд�붨���������ֽ���

˵��

bcompiler_write_class ( resource $filehandle , string $className [, string $extends ] ) : bool

�� PHP ��ȡ�Ѵ��ڵ�����ֽ��룬��������д��򿪵��ļ�����С�

����

filehandle

fopen() ���ص��ļ������

className

�ַ�����������

extends

����ֵ

�ɹ�ʱ���� TRUE�� ������ʧ��ʱ���� FALSE��

����

Example #1 bcompiler_write_class() ����

<?php
$fh 
fopen("/tmp/example","w");
bcompiler_write_header($fh);
bcompiler_write_class($fh,"DB");
// ��������� DB_mysql д�� DB_common����ΪDB_mysql extends DB_common��
bcompiler_write_class($fh,"DB_common");
bcompiler_write_class($fh,"DB_mysql");
bcompiler_write_footer($fh);
fclose($fh);

?>

ע��

Warning

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

Note:

�ú�������ִ��������飬����ȷ����д�����˳�򣬷�ֹ�ڼ��ص�ʱ���� undefined class ����

�μ�