Perl is the language, perl is the implementation

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@58671 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
jim winstead 2001-09-28 21:06:44 +00:00
parent a7ab91727a
commit fbfa7ec482
2 changed files with 4 additions and 4 deletions

View file

@ -1,5 +1,5 @@
<?xml encoding="iso-8859-1"?>
<!-- $Revision: 1.16 $ -->
<!-- $Revision: 1.17 $ -->
<chapter id="language.basic-syntax">
<title>Basic syntax</title>
@ -138,7 +138,7 @@ if (boolean-expression) {
<title>Instruction separation</title>
<simpara>
Instructions are separated the same as in C or perl - terminate
Instructions are separated the same as in C or Perl - terminate
each statement with a semicolon.</simpara>
<para>

View file

@ -1,5 +1,5 @@
<?xml encoding="iso-8859-1"?>
<!-- $Revision: 1.38 $ -->
<!-- $Revision: 1.39 $ -->
<chapter id="control-structures">
<title>Control Structures</title>
@ -451,7 +451,7 @@ for (expr1; expr2; expr3): statement; ...; endfor;
<title><literal>foreach</literal></title>
<para>
PHP 4 (not PHP 3) includes a <literal>foreach</literal> construct,
much like perl and some other languages. This simply gives an easy
much like Perl and some other languages. This simply gives an easy
way to iterate over arrays. There are two syntaxes; the second is
a minor but useful extension of the first:
<informalexample>