[PHP-DOC] cvs: phpdoc /en/language/oop5 patterns.xml
by Etienne Kneuss other posts by this author
Nov 27 2006 1:17PM messages near this date
[PHP-DOC] #35618 [Csd]: Ini option "allow_url_include" was not included in 5.1.0
|
[PHP-DOC] cvs: phpdoc /en/docweb main.ent
colder Mon Nov 27 21:17:13 2006 UTC
Modified files:
/phpdoc/en/language/oop5 patterns.xml
Log:
close is a keyword not a function, fix the confusing
http://cvs.php.net/viewvc.cgi/phpdoc/en/language/oop5/patterns.xml?r1=1.8&r2=1.9&diff_format
=u
Index: phpdoc/en/language/oop5/patterns.xml
diff -u phpdoc/en/language/oop5/patterns.xml:1.8 phpdoc/en/language/oop5/patterns.xml:1.9
--- phpdoc/en/language/oop5/patterns.xml:1.8 Fri Nov 18 11:14:24 2005
+++ phpdoc/en/language/oop5/patterns.xml Mon Nov 27 21:17:13 2006
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.8 $ -->
+<!-- $Revision: 1.9 $ -->
<sect1 id="language.oop5.patterns">
<title> Patterns</title>
<para>
@@ -124,7 +124,7 @@
$test-> bark();
// This will issue an E_USER_ERROR.
-$test_clone = clone($test);
+$test_clone = clone $test;
?>
]]>
|