mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
Closing bug #12750 (echo was missing)
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@54957 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
f075029416
commit
5be1e3b79e
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
<!-- $Revision: 1.19 $ -->
|
||||
<!-- $Revision: 1.20 $ -->
|
||||
<chapter id="language.oop">
|
||||
<title>Classes and Objects</title>
|
||||
|
||||
|
@ -303,7 +303,7 @@ class A {
|
|||
|
||||
class B extends A {
|
||||
function C() {
|
||||
"I am a regular function.<br>\n";
|
||||
echo "I am a regular function.<br>\n";
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue