didou Wed Jan 5 08:18:12 2005 EDT
Modified files:
/phpdoc/en/reference/bcompiler/functions bcompiler-write-file.xml
Log:
fix functions names
http://cvs.php.net/diff.php/phpdoc/en/reference/bcompiler/functions/bcompiler-write-file.xml?r1=1.1&r2=1.2&ty=u
Index: phpdoc/en/reference/bcompiler/functions/bcompiler-write-file.xml
diff -u phpdoc/en/reference/bcompiler/functions/bcompiler-write-file.xml:1.1
phpdoc/en/reference/bcompiler/functions/bcompiler-write-file.xml:1.2
--- phpdoc/en/reference/bcompiler/functions/bcompiler-write-file.xml:1.1
Tue Dec 21 11:21:04 2004
+++ phpdoc/en/reference/bcompiler/functions/bcompiler-write-file.xml Wed Jan
5 08:18:11 2005
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.1 $ -->
+<!-- $Revision: 1.2 $ -->
<refentry id="function.bcompiler-write-file">
<refnamediv>
<refname>bcompile_write_file</refname>
@@ -23,9 +23,9 @@
<![CDATA[
<?php
$fh = fopen("example.phb", "w");
-bcompile_write_header($fh);
-bcompile_write_file($fh, "example.php");
-bcompile_write_footer($fh);
+bcompiler_write_header($fh);
+bcompiler_write_file($fh, "example.php");
+bcompiler_write_footer($fh);
fclose($fh);
/* the following should be equivalent:
include "example.php";