Changed 'hallo' to 'hello'.

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@332515 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Levi Morrison 2013-12-27 03:47:35 +00:00
parent 719247b2cc
commit f616f360e1

View file

@ -201,7 +201,7 @@ array(4) {
<programlisting role="php">
<![CDATA[
<?php
$array = array("foo", "bar", "hallo", "world");
$array = array("foo", "bar", "hello", "world");
var_dump($array);
?>
]]>
@ -215,7 +215,7 @@ array(4) {
[1]=>
string(3) "bar"
[2]=>
string(5) "hallo"
string(5) "hello"
[3]=>
string(5) "world"
}
@ -306,7 +306,7 @@ string(3) "foo"
<note>
<para>
Both square brackets and curly braces can be used interchangeably
for accessing array elements (e.g. $array[42] and $array{42} will
for accessing array elements (e.g. <literal>$array[42]</literal> and <literal>$array{42}</literal> will
both do the same thing in the example above).
</para>
</note>