Call to undefined function bcompiler_write_header() 错误怎么解决?
php程序运行时出现:Fatal error: Call to undefined function bcompiler_write_header() 错误,怎么解决。谢谢。代码如下:
1 2 3 4 5 6 | <br />
$fh = fopen ( $this ->targetPaths[ $key ]. 'encrypt.php' , "w" );<br />
bcompiler_write_header( $fh );<br />
bcompiler_write_file( $fh , $this ->targetPaths[ $key ]);<br />
bcompiler_write_footer( $fh );<br />
fclose( $fh );<br />
|
登录后复制