mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-15 16:38:54 +00:00
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:
parent
719247b2cc
commit
f616f360e1
1 changed files with 3 additions and 3 deletions
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue