Remove forgotten comments (thanks to Hannes)

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@268436 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Jakub Vrana 2008-11-06 14:41:54 +00:00
parent e3be9c8da0
commit 2527a9e3a8

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision: 1.15 $ -->
<!-- $Revision: 1.16 $ -->
<sect1 xml:id="language.types.string">
<title>Strings</title>
@ -353,7 +353,7 @@ EOD
<programlisting role="php">
<![CDATA[
<?php
//~ $str = <<<'EOD'
$str = <<<'EOD'
Example of string
spanning multiple lines
using nowdoc syntax.
@ -375,7 +375,7 @@ class foo
$foo = new foo();
$name = 'MyName';
//~ echo <<<'EOT'
echo <<<'EOT'
My name is "$name". I am printing some $foo->foo.
Now, I am printing some {$foo->bar[1]}.
This should not print a capital 'A': \x41
@ -403,7 +403,7 @@ This should not print a capital 'A': \x41]]></screen>
<![CDATA[
<?php
class foo {
//~ public $bar = <<<'EOT'
public $bar = <<<'EOT'
bar
EOT;
}