dams Mon Jul 23 12:50:16 2001 EDT
Modified files:
/phpdoc/fr/functions funchand.xml
Log:
Corrected build-breaking files.Next build should go
Index: phpdoc/fr/functions/funchand.xml
diff -u phpdoc/fr/functions/funchand.xml:1.14 phpdoc/fr/functions/funchand.xml:1.15
--- phpdoc/fr/functions/funchand.xml:1.14 Thu Jul 12 08:13:02 2001
+++ phpdoc/fr/functions/funchand.xml Mon Jul 23 12:50:16 2001
@@ -296,14 +296,14 @@
<informalexample>
<programlisting role="php">
<?php
-function foo() {
+ function foo() {
$numargs = func_num_args();
echo "Nombre d'arguments: $numargs<br>\n";
if ($numargs >= 2) {
echo "Le second argument est: " . func_get_arg (1) . "<br>\n";
}
-}
-foo (1, 2, 3);
+ }
+ foo(1, 2, 3);
?>
</programlisting>
</informalexample>