dams Fri Jan 12 05:16:18 2001 EDT
Modified files:
/phpdoc/fr/language variables.xml
Log:
Remplaced two caracters by ascii 228 as in en. (now Unix format...)
Index: phpdoc/fr/language/variables.xml
diff -u phpdoc/fr/language/variables.xml:1.10 phpdoc/fr/language/variables.xml:1.11
--- phpdoc/fr/language/variables.xml:1.10 Fri Jan 12 05:12:09 2001
+++ phpdoc/fr/language/variables.xml Fri Jan 12 05:16:17 2001
@@ -584,11 +584,11 @@
<?php
$a = 1;
$b = 2;
-Function Sum () {
+Function somme() {
global $a, $b;
$b = $a + $b;
}
-Sum ();
+somme();
echo $b;
</programlisting>
</informalexample>
@@ -633,11 +633,12 @@
<informalexample>
<programlisting role="php">
<?php
-function Test() {
+function test() {
$a = 0;
echo $a;
$a++;
}
+?>
</programlisting>
</informalexample>
<simpara>
@@ -658,6 +659,7 @@
echo $a;
$a++;
}
+?>
</programlisting>
</informalexample>
<simpara>
@@ -703,6 +705,7 @@
<programlisting role="php">
<?php
$a = "bonjour";
+?>
</programlisting>
</informalexample>
<simpara>
@@ -716,6 +719,7 @@
<programlisting role="php">
<?php
$$a = "monde";
+?>
</programlisting>
</informalexample>
<simpara>
@@ -727,6 +731,7 @@
<programlisting role="php">
<?php
echo "$a ${$a}";
+?>
</programlisting>
</informalexample>
<simpara>
@@ -734,7 +739,9 @@
</simpara>
<informalexample>
<programlisting role="php">
+<?php
echo "$a $bonjour";
+?>
</programlisting>
</informalexample>
<simpara>