dwh/init/ORA_INIT_BCOMPILER.php
Daeng Deni Mardaeni 5321a5434b first commit
2023-10-02 17:26:17 +07:00

13 lines
252 B
PHP

<?php
$fh = fopen("ORA_INIT.phb", "w");
bcompiler_write_header($fh);
bcompiler_write_file($fh, "ORA_INIT.php");
bcompiler_write_footer($fh);
fclose($fh);
/* the following should be equivalent:
include "example.php";
and
include "example.phb";
*/
?>