svn: /phpdoc/tr/trunk/reference/ array/constants.xml bbcode/book.xml bc/book.xml bc/ini.xml

[email protected] (Nilgün Belma Bugüner)
Newsgroups php.doc.tr
Message-ID <[email protected]>
nilgun                                   Wed, 26 Sep 2018 11:02:06 +0000

Revision: http://svn.php.net/viewvc?view=revision&revision=345694

Log:
update for sync with English docs.

Changed paths:
    U   phpdoc/tr/trunk/reference/array/constants.xml
    U   phpdoc/tr/trunk/reference/bbcode/book.xml
    U   phpdoc/tr/trunk/reference/bc/book.xml
    U   phpdoc/tr/trunk/reference/bc/ini.xml

Modified: phpdoc/tr/trunk/reference/array/constants.xml
===================================================================
--- phpdoc/tr/trunk/reference/array/constants.xml	2018-09-26 10:20:23 UTC (rev 345693)
+++ phpdoc/tr/trunk/reference/array/constants.xml	2018-09-26 11:02:06 UTC (rev 345694)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 334988 Maintainer: behzat Status: ready -->
+<!-- EN-Revision: 341282 Maintainer: behzat Status: ready -->
 <!-- CREDITS: faruk, sezer -->
 <appendix xml:id="array.constants" xmlns="http://docbook.org/ns/docbook">
  &reftitle.constants;
@@ -114,8 +114,8 @@
    <listitem>
     <simpara>
     <constant>SORT_LOCALE_STRING</constant> elemanları dizgesel olarak,
-    mevcut yerel sisteme göre karşılaştırmak için kullanılınır. PHP 4.4.0 ve
-    5.0.2 sürümlerinde eklenmiştir.
+    mevcut yerel sisteme göre karşılaştırmak için kullanılınır.
+    5.0.2 sürümünde eklenmiştir.
     </simpara>
    </listitem>
   </varlistentry>

Modified: phpdoc/tr/trunk/reference/bbcode/book.xml
===================================================================
--- phpdoc/tr/trunk/reference/bbcode/book.xml	2018-09-26 10:20:23 UTC (rev 345693)
+++ phpdoc/tr/trunk/reference/bbcode/book.xml	2018-09-26 11:02:06 UTC (rev 345694)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 297028 Maintainer: aydin Status: ready -->
-<!-- Membership: external, pecl -->
+<!-- EN-Revision: 330340 Maintainer: aydin Status: ready -->
+
 <book xml:id="book.bbcode" xmlns="http://docbook.org/ns/docbook">
  <title>Bulletin Board Code</title>
  <titleabbrev>BBCode</titleabbrev>

Modified: phpdoc/tr/trunk/reference/bc/book.xml
===================================================================
--- phpdoc/tr/trunk/reference/bc/book.xml	2018-09-26 10:20:23 UTC (rev 345693)
+++ phpdoc/tr/trunk/reference/bc/book.xml	2018-09-26 11:02:06 UTC (rev 345694)
@@ -1,10 +1,9 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 288721 Maintainer: aydin Status: ready -->
-<!-- Purpose: mathcrypto.math -->
-<!-- Membership: bundled -->
+<!-- EN-Revision: 343027 Maintainer: aydin Status: ready -->

 <book xml:id="book.bc" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
+ <?phpdoc extension-membership="bundled" ?>
  <title>BCMath Keyfi Duyarlıklı Matematik</title>
  <titleabbrev>BC Math</titleabbrev>

@@ -13,9 +12,35 @@
   &reftitle.intro;
   <para>
    Keyfi duyarlıklı matematik işlemleri için PHP ikilik hesap makinesi
-   işlevleri sağlar. Hesap makinesi herhangi bir boyut ve tamlıkta sayıları
-   destekler, dizge gösterimlerini verebilir.
+   işlevleri sağlar. Hesap makinesi herhangi bir boyut ve tamlıkta sayılar
+   <literal>2147483647</literal>'ye kadar (veya <literal>0x7FFFFFFF</literal>)
+   desteklenir, yeterli bellek yoksa dizge olarak gösterilir.
   </para>
+  <caution>
+   <para>
+    <type>string</type> türünde bir terim bekleyen bir BCMath işlevine
+    <type>float</type> türünde değer aktarılması, PHP'nin <type>float</type>
+    değerleri <type>string</type> türüne dönüştürme yolundan dolayı istenen
+    etkiyi sağlamayabilir (<type>string</type> üstel gösterim içerebilir ama
+    üstel gösterim BCMath tarafından desteklenmez, ayrıca ondalık ayracı
+    yerele bağımlıdır ama BCMath burada ondalık nokta bekler).
+   </para>
+   <informalexample>
+    <programlisting role="php">
+<![CDATA[
+<?php
+$num1 = 0; // (string) 0 => '0'
+$num2 = -0.000005; // (string) -0.000005 => '-5.05E-6'
+echo bcadd($num1, $num2, 6); // => '0.000000'
+
+setlocale(LC_NUMERIC, 'de_DE'); // uses a decimal comma
+$num2 = 1.2; // (string) 1.2 => '1,2'
+echo bcsub($num1, $num2, 1); // => '0.0'
+?>
+]]>
+    </programlisting>
+   </informalexample>
+  </caution>
  </preface>
  <!-- }}} -->


Modified: phpdoc/tr/trunk/reference/bc/ini.xml
===================================================================
--- phpdoc/tr/trunk/reference/bc/ini.xml	2018-09-26 10:20:23 UTC (rev 345693)
+++ phpdoc/tr/trunk/reference/bc/ini.xml	2018-09-26 11:02:06 UTC (rev 345694)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 297028 Maintainer: aydin Status: ready -->
+<!-- EN-Revision: 323642 Maintainer: aydin Status: ready -->
 <section xml:id="bc.configuration" xmlns="http://docbook.org/ns/docbook">
  &reftitle.runtime;
  &extension.runtime;
@@ -10,10 +10,10 @@
   <tgroup cols="4">
    <thead>
     <row>
-     <entry>İsim</entry>
-     <entry>Öntanımlı değeri</entry>
-     <entry>Değişiklik yeri</entry>
-     <entry>Değişiklik bilgisi</entry>
+     <entry>&Name;</entry>
+     <entry>&Default;</entry>
+     <entry>&Changeable;</entry>
+     <entry>&Changelog;</entry>
     </row>
    </thead>
    <tbody>
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.