Skip to content

Commit

Permalink
Apply revchecked skipped commit c60943fefc4ff8950460e76d714a463437cf0eb2
Browse files Browse the repository at this point in the history
Replace PHP_INI_* with INI_* constants
  • Loading branch information
Girgias committed Jan 26, 2024
1 parent 1cde258 commit c43bb43
Show file tree
Hide file tree
Showing 36 changed files with 376 additions and 376 deletions.
106 changes: 53 additions & 53 deletions appendices/ini.core.xml

Large diffs are not rendered by default.

232 changes: 116 additions & 116 deletions appendices/ini.list.xml

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions appendices/ini.sections.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@
<tbody>
<row>
<entry><link linkend="ini.per-host">[HOST=]</link></entry>
<entry>PHP_INI_SYSTEM</entry>
<entry><constant>INI_SYSTEM</constant></entry>
<entry></entry>
</row>
<row>
<entry><link linkend="ini.per-path">[PATH=]</link></entry>
<entry>PHP_INI_SYSTEM</entry>
<entry><constant>INI_SYSTEM</constant></entry>
<entry></entry>
</row>
</tbody>
Expand Down
2 changes: 1 addition & 1 deletion features/commandline.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1909,7 +1909,7 @@ $ php -S 0.0.0.0:8000
<entry><link linkend="ini.cli-server.color">
cli_server.color</link></entry>
<entry>"0"</entry>
<entry>PHP_INI_ALL</entry>
<entry><constant>INI_ALL</constant></entry>
<entry></entry>
</row>
</tbody>
Expand Down
34 changes: 17 additions & 17 deletions install/ini.xml
Original file line number Diff line number Diff line change
Expand Up @@ -222,8 +222,8 @@ $ PHP_INI_SCAN_DIR=/usr/local/etc/php.d: php
taranır.
</simpara>
<simpara>
.user.ini tarzı INI dosyalarında sadece <constant>PHP_INI_PERDIR</constant>
ve <constant>PHP_INI_USER</constant> kipindeki INI ayarları işleme sokulur.
.user.ini tarzı INI dosyalarında sadece <constant>INI_PERDIR</constant>
ve <constant>INI_USER</constant> kipindeki INI ayarları işleme sokulur.
</simpara>

<simpara>
Expand Down Expand Up @@ -260,15 +260,15 @@ $ PHP_INI_SCAN_DIR=/usr/local/etc/php.d: php

<para>
Örneğin, <link linkend="ini.output-buffering">output_buffering</link>
ayarı için kip <literal>PHP_INI_PERDIR</literal> olup
ayarı için kip <constant>INI_PERDIR</constant> olup
<function>ini_set</function> kullanarak atanamaz. Bununla birlikte,
<link linkend="ini.display-errors">display_errors</link> yönergesinin
kipi <literal>PHP_INI_ALL</literal> olup <function>ini_set</function>
kipi <constant>INI_ALL</constant> olup <function>ini_set</function>
kullanımı dahil her yerde atanabilir.
</para>

<table>
<title>PHP_INI_* kiplerinin tanımları</title>
<title>INI_* kiplerinin tanımları</title>
<tgroup cols="2">
<thead>
<row>
Expand All @@ -278,25 +278,25 @@ $ PHP_INI_SCAN_DIR=/usr/local/etc/php.d: php
</thead>
<tbody>
<row>
<entry>PHP_INI_USER</entry>
<entry><constant>INI_USER</constant></entry>
<entry>Girdi <link linkend="configuration.changes.windows">Windows
registry</link> veya kullanıcı betiklerinde (örneğin
<function>ini_set</function> ile) ya da &user-ini; dosyasında
atanabilir.
</entry>
</row>
<row>
<entry>PHP_INI_PERDIR</entry>
<entry><constant>INI_PERDIR</constant></entry>
<entry>Girdi &php.ini;, &htaccess;, &httpd.conf; veya &user-ini;
dosyasında atanabilir.
</entry>
</row>
<row>
<entry>PHP_INI_SYSTEM</entry>
<entry><constant>INI_SYSTEM</constant></entry>
<entry>Girdi &php.ini; veya &httpd.conf; dosyasında atanabilir.</entry>
</row>
<row>
<entry>PHP_INI_ALL</entry>
<entry><constant>INI_ALL</constant></entry>
<entry>Girdi herhangi bir yerde atanabilir.</entry>
</row>
</tbody>
Expand All @@ -320,8 +320,8 @@ $ PHP_INI_SCAN_DIR=/usr/local/etc/php.d: php
<para>
PHP yapılandırmasını Apache yapılandırma dosyaları içinden
değiştirmenize imkan veren çeşitli Apache yönergeleri vardır.
<constant>PHP_INI_ALL</constant>, <constant>PHP_INI_PERDIR</constant>
veya <constant>PHP_INI_SYSTEM</constant> olarak belirtilebilen
<constant>INI_ALL</constant>, <constant>INI_PERDIR</constant>
veya <constant>INI_SYSTEM</constant> olarak belirtilebilen
yönergeleri eklerdeki <link linkend="ini.list">php.ini yönergelerinin
listesi</link> sayfasında bulabilirsiniz.
</para>
Expand All @@ -337,8 +337,8 @@ $ PHP_INI_SCAN_DIR=/usr/local/etc/php.d: php
<listitem>
<para>
Belirtilen değeri ismi belirtilen yönergeye atar. Sadece
<constant>PHP_INI_ALL</constant> ve
<constant>PHP_INI_PERDIR</constant> türü yönergeler için
<constant>INI_ALL</constant> ve
<constant>INI_PERDIR</constant> türü yönergeler için
kullanılabilir. Önceki atanan değeri silmek için değer olarak
<literal>none</literal> kullanın.
</para>
Expand All @@ -361,8 +361,8 @@ $ PHP_INI_SCAN_DIR=/usr/local/etc/php.d: php
<listitem>
<para>
Bir mantıksal yapılandırma yönergesi atamak için kullanılır. Sadece
<constant>PHP_INI_ALL</constant> ve
<constant>PHP_INI_PERDIR</constant> türü yönergeler için
<constant>INI_ALL</constant> ve
<constant>INI_PERDIR</constant> türü yönergeler için
kullanılabilir.
</para>
</listitem>
Expand Down Expand Up @@ -446,8 +446,8 @@ $ PHP_INI_SCAN_DIR=/usr/local/etc/php.d: php
için geçerli olur. Anahtar altındaki değerler PHP yapılandırma
yönergelerinin isimlerini ve dizge değerlerini içermelidir. Değerlerde
bulunan PHP sabitleri çözümlenmez. Sadece,
<constant>PHP_INI_USER</constant> türü değişebilir yapılandırma
değerleri bu yolla atanabilir, <constant>PHP_INI_PERDIR</constant>
<constant>INI_USER</constant> türü değişebilir yapılandırma
değerleri bu yolla atanabilir, <constant>INI_PERDIR</constant>
değerleri atanamaz, çünkü bu yapılandırma değerleri her istekte yeniden
okunur.
</simpara>
Expand Down
2 changes: 1 addition & 1 deletion language-snippets.ent
Original file line number Diff line number Diff line change
Expand Up @@ -2158,7 +2158,7 @@ Yapılandırma yönergelerinin kısa açıklamalarını aşağıda bulabilirsini
<!ENTITY extension.runtime '<simpara xmlns="http://docbook.org/ns/docbook">Bu işlevlerin davranışı &php.ini;
içindeki ayarlardan etkilenir.</simpara>'>

<!ENTITY ini.php.constants 'PHP_INI_* kiplerinin tanımları ve ayrıntılı
<!ENTITY ini.php.constants 'INI_* kiplerinin tanımları ve ayrıntılı
açıklamaları <xref xmlns="http://docbook.org/ns/docbook"
linkend="configuration.changes.modes"/> bölümünde bulunabilir.'>

Expand Down
2 changes: 1 addition & 1 deletion language/namespaces.xml
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ echo \Fan\Fin\FAN; // Fan\Fin\FAN sabitine çözümlenir
<para>
Herhangi bir küresel sınıf, işlev veya sabite
<function>\strlen</function>, <classname>\Exception</classname> veya
<literal>\INI_ALL</literal> gibi tamamen nitelenmiş isimleriyle
\<constant>INI_ALL</constant> gibi tamamen nitelenmiş isimleriyle
erişilebileceğine dikkat ediniz.
<example>
<title>- Küresel sınıf, işlev ve sabitlere bir isim alanı içinden erişim
Expand Down
8 changes: 4 additions & 4 deletions reference/apache/ini.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,25 +32,25 @@
<row>
<entry><link linkend="ini.engine">engine</link></entry>
<entry>"1"</entry>
<entry>PHP_INI_ALL</entry>
<entry><constant>INI_ALL</constant></entry>
<entry />
</row>
<row>
<entry><link linkend="ini.child-terminate">child_terminate</link></entry>
<entry>"0"</entry>
<entry>PHP_INI_ALL</entry>
<entry><constant>INI_ALL</constant></entry>
<entry />
</row>
<row>
<entry><link linkend="ini.last-modified">last_modified</link></entry>
<entry>"0"</entry>
<entry>PHP_INI_ALL</entry>
<entry><constant>INI_ALL</constant></entry>
<entry />
</row>
<row>
<entry><link linkend="ini.xbithack">xbithack</link></entry>
<entry>"0"</entry>
<entry>PHP_INI_ALL</entry>
<entry><constant>INI_ALL</constant></entry>
<entry />
</row>
</tbody>
Expand Down
2 changes: 1 addition & 1 deletion reference/bc/ini.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<row>
<entry><link linkend="ini.bcmath.scale">bcmath.scale</link></entry>
<entry>"0"</entry>
<entry>PHP_INI_ALL</entry>
<entry><constant>INI_ALL</constant></entry>
<entry></entry>
</row>
</tbody>
Expand Down
14 changes: 7 additions & 7 deletions reference/com/ini.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,43 +19,43 @@
<row>
<entry><link linkend="ini.com.allow-dcom">com.allow_dcom</link></entry>
<entry>"0"</entry>
<entry>PHP_INI_SYSTEM</entry>
<entry><constant>INI_SYSTEM</constant></entry>
<entry></entry>
</row>
<row>
<entry><link linkend="ini.com.autoregister-typelib">com.autoregister_typelib</link></entry>
<entry>"0"</entry>
<entry>PHP_INI_ALL</entry>
<entry><constant>INI_ALL</constant></entry>
<entry></entry>
</row>
<row>
<entry><link linkend="ini.com.autoregister-verbose">com.autoregister_verbose</link></entry>
<entry>"0"</entry>
<entry>PHP_INI_ALL</entry>
<entry><constant>INI_ALL</constant></entry>
<entry></entry>
</row>
<row>
<entry><link linkend="ini.com.autoregister-casesensitive">com.autoregister_casesensitive</link></entry>
<entry>"1"</entry>
<entry>PHP_INI_ALL</entry>
<entry><constant>INI_ALL</constant></entry>
<entry></entry>
</row>
<row>
<entry><link linkend="ini.com.code-page">com.code_page</link></entry>
<entry>""</entry>
<entry>PHP_INI_ALL</entry>
<entry><constant>INI_ALL</constant></entry>
<entry></entry>
</row>
<row>
<entry><link linkend="ini.com.dotnet-version">com.dotnet_version</link></entry>
<entry>""</entry>
<entry>PHP_INI_SYSTEM</entry>
<entry><constant>INI_SYSTEM</constant></entry>
<entry>PHP 8.0.0 ve sonrasında kullanılabilir.</entry>
</row>
<row>
<entry><link linkend="ini.com.typelib-file">com.typelib_file</link></entry>
<entry>""</entry>
<entry>PHP_INI_SYSTEM</entry>
<entry><constant>INI_SYSTEM</constant></entry>
<entry></entry>
</row>
</tbody>
Expand Down
2 changes: 1 addition & 1 deletion reference/curl/ini.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<row>
<entry><link linkend="ini.curl.cainfo">curl.cainfo</link></entry>
<entry>NULL</entry>
<entry>PHP_INI_SYSTEM</entry>
<entry><constant>INI_SYSTEM</constant></entry>
<entry></entry>
</row>
</tbody>
Expand Down
10 changes: 5 additions & 5 deletions reference/datetime/ini.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,31 +19,31 @@
<row>
<entry><link linkend="ini.date.default-latitude">date.default_latitude</link></entry>
<entry>"31.7667"</entry>
<entry>PHP_INI_ALL</entry>
<entry><constant>INI_ALL</constant></entry>
<entry></entry>
</row>
<row>
<entry><link linkend="ini.date.default-longitude">date.default_longitude</link></entry>
<entry>"35.2333"</entry>
<entry>PHP_INI_ALL</entry>
<entry><constant>INI_ALL</constant></entry>
<entry></entry>
</row>
<row>
<entry><link linkend="ini.date.sunrise-zenith">date.sunrise_zenith</link></entry>
<entry>"90.833333"</entry>
<entry>PHP_INI_ALL</entry>
<entry><constant>INI_ALL</constant></entry>
<entry>PHP 8.0.0 öncesinde, "90.583333" öntanımlıydı.</entry>
</row>
<row>
<entry><link linkend="ini.date.sunset-zenith">date.sunset_zenith</link></entry>
<entry>"90.833333"</entry>
<entry>PHP_INI_ALL</entry>
<entry><constant>INI_ALL</constant></entry>
<entry>PHP 8.0.0 öncesinde, "90.583333" öntanımlıydı.</entry>
</row>
<row>
<entry><link linkend="ini.date.timezone">date.timezone</link></entry>
<entry>"UTC"</entry>
<entry>PHP_INI_ALL</entry>
<entry><constant>INI_ALL</constant></entry>
<entry>PHP 8.2 ve sonrasında, geçersiz bir değer veya boş dizge atanması
bir uyarı ile sonuçlanmaktadır.</entry>
</row>
Expand Down
Loading

0 comments on commit c43bb43

Please sign in to comment.