cortesi Thu Jan 10 11:16:56 2002 EDT
Modified files:
/phpdoc/it/features persistent-connections.xml
/phpdoc/it/functions math.xml
Log:
update to current EN versions
Index: phpdoc/it/features/persistent-connections.xml
diff -u phpdoc/it/features/persistent-connections.xml:1.9
phpdoc/it/features/persistent-connections.xml:1.10
--- phpdoc/it/features/persistent-connections.xml:1.9 Wed Dec 19 04:50:12 2001
+++ phpdoc/it/features/persistent-connections.xml Thu Jan 10 11:16:56 2002
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- EN-Revision: 1.17 Maintainer: cortesi Status: ready -->
+<!-- EN-Revision: 1.18 Maintainer: cortesi Status: ready -->
<chapter id="features.persistent-connections">
<title>Connessioni Persistenti ai Database</title>
@@ -134,7 +134,16 @@
probabilmente succeder�) cambiare l'efficienza dello script, ma non il suo
comportamento!
</simpara>
-
+ <para>
+ Vedere anche <function>fbsql_pconnect</function>,
+ <function>ibase_pconnect</function>, <function>ifx_pconnect</function>,
+ <function>imap_popen</function>, <function>ingres_pconnect</function>,
+ <function>msql_pconnect</function>, <function>mssql_pconnect</function>,
+ <function>mysql_pconnect</function>, <function>OCIPLogon</function>,
+ <function>odbc_pconnect</function>, <function>Ora_pLogon</function>,
+ <function>pfsockopen</function>, <function>pg_pconnect</function> e
+ <function>sybase_pconnect</function>.
+ </para>
</chapter>
<!-- Keep this comment at the end of the file
Index: phpdoc/it/functions/math.xml
diff -u phpdoc/it/functions/math.xml:1.20 phpdoc/it/functions/math.xml:1.21
--- phpdoc/it/functions/math.xml:1.20 Sat Jan 5 10:45:22 2002
+++ phpdoc/it/functions/math.xml Thu Jan 10 11:16:56 2002
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- EN-Revision: 1.64 Maintainer: cortesi Status: ready -->
+<!-- EN-Revision: 1.67 Maintainer: cortesi Status: ready -->
<reference id="ref.math">
<title>Funzioni Matematiche</title>
<titleabbrev>Mat</titleabbrev>
@@ -145,6 +145,16 @@
altrimenti restituisce un <type>integer</type> (perché <type>float</type>
di solito ha un range di
valori più grande di <type>integer</type>).
</para>
+ <example>
+ <title>Esempio di <function>abs</function></title>
+ <programlisting role="php">
+<![CDATA[
+$abs = abs(-4.2); // $abs = 4.2; (double/float)
+$abs2 = abs(5); // $abs2 = 5; (integer)
+$abs3 = abs(-5); // $abs3 = 5; (integer)
+]]>
+ </programlisting>
+ </example>
</refsect1>
</refentry>
@@ -413,6 +423,15 @@
<type>float</type>, poiché la gamma di valori del tipo <type>float</type>
è
solitamente più grande di quella del tipo <type>int</type>.
</simpara>
+ <example>
+ <title>Esempio di <function>ceil</function></title>
+ <programlisting role="php">
+<![CDATA[
+$cinque = ceil(4.3); // $cinque = 5.0;
+$dieci = ceil(9.999); // $dieci = 10.0;
+]]>
+ </programlisting>
+ </example>
<simpara>
Vedere anche <function>floor</function> e
<function>round</function>.
@@ -629,7 +648,7 @@
solitamente più grande di quella del tipo <type>int</type>.
</simpara>
<example>
- <title>Esempi di <function>floor</function></title>
+ <title>Esempio di <function>floor</function></title>
<programlisting role="php">
<![CDATA[
$quattro = floor(4.3); // $quattro = 4.0;
@@ -1219,7 +1238,7 @@
</para>
</warning>
<para>
- Vedere anche <function>exp</function>.
+ Vedere anche <function>exp</function> e <function>sqrt</function>.
</para>
</refsect1>
</refentry>