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 73aeeb0 commit d26f887
Show file tree
Hide file tree
Showing 77 changed files with 632 additions and 632 deletions.
110 changes: 55 additions & 55 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 @@ -33,12 +33,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 appendices/migration82/other-changes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@

<para>
<link linkend="ini.sqlite3.defensive">sqlite3.defensive</link>
est maintenant <constant>PHP_INI_USER</constant>.
est maintenant <constant>INI_USER</constant>.
</para>
</sect3>

Expand Down
2 changes: 1 addition & 1 deletion features/commandline.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1947,7 +1947,7 @@ $ php -S 0.0.0.0:8000
<row>
<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
32 changes: 16 additions & 16 deletions install/ini.xml
Original file line number Diff line number Diff line change
Expand Up @@ -224,8 +224,8 @@ $ PHP_INI_SCAN_DIR=/usr/local/etc/php.d: php
<varname>$_SERVER['DOCUMENT_ROOT']</varname>). Dans le cas où le fichier PHP
est hors de la racine web, seul son dossier est scanné.
</simpara>
<simpara>Seules les configurations INI avec les modes <constant>PHP_INI_PERDIR</constant>
et <constant>PHP_INI_USER</constant> seront reconnues dans les fichiers INI
<simpara>Seules les configurations INI avec les modes <constant>INI_PERDIR</constant>
et <constant>INI_USER</constant> seront reconnues dans les fichiers INI
.user.ini-style.
</simpara>

Expand Down Expand Up @@ -264,16 +264,16 @@ $ PHP_INI_SCAN_DIR=/usr/local/etc/php.d: php
<para>
Par exemple, la directive
<link linkend="ini.output-buffering">output_buffering</link> a le mode
<literal>PHP_INI_PERDIR</literal> alors elle ne peut pas être modifiée
<constant>INI_PERDIR</constant> alors elle ne peut pas être modifiée
avec la fonction <function>ini_set</function>. D'un autre coté, la directive
<link linkend="ini.display-errors">display_errors</link> a le mode
<literal>PHP_INI_ALL</literal>, et peut être modifiée n'importe où,
<constant>INI_ALL</constant>, et peut être modifiée n'importe où,
y compris avec la fonction <function>ini_set</function>.
</para>

<para>
<table>
<title>Définition des modes PHP_INI_*</title>
<title>Définition des modes INI_*</title>
<tgroup cols="2">
<thead>
<row>
Expand All @@ -283,7 +283,7 @@ $ PHP_INI_SCAN_DIR=/usr/local/etc/php.d: php
</thead>
<tbody>
<row>
<entry><literal>PHP_INI_USER</literal></entry>
<entry><constant>INI_USER</constant></entry>
<entry>
La directive peut être modifiée dans un script utilisateur,
avec la fonction <function>ini_set</function>, ou via
Expand All @@ -292,18 +292,18 @@ $ PHP_INI_SCAN_DIR=/usr/local/etc/php.d: php
</entry>
</row>
<row>
<entry><literal>PHP_INI_PERDIR</literal></entry>
<entry><constant>INI_PERDIR</constant></entry>
<entry>
La directive peut être modifiée dans les fichiers &php.ini;,
&htaccess;, &httpd.conf; ou &user-ini;
</entry>
</row>
<row>
<entry><literal>PHP_INI_SYSTEM</literal></entry>
<entry><constant>INI_SYSTEM</constant></entry>
<entry>La directive peut être modifiée dans les fichiers &php.ini; ou &httpd.conf;</entry>
</row>
<row>
<entry><literal>PHP_INI_ALL</literal></entry>
<entry><constant>INI_ALL</constant></entry>
<entry>La directive peut être modifiée n'importe où</entry>
</row>
</tbody>
Expand All @@ -329,8 +329,8 @@ $ PHP_INI_SCAN_DIR=/usr/local/etc/php.d: php
Il y a de nombreuses directives
Apache qui vous permettent de modifier la configuration de PHP
à partir des fichiers de configuration Apache. Pour une liste des
directives qui sont <constant>PHP_INI_ALL</constant>,
<constant>PHP_INI_PERDIR</constant> ou <constant>PHP_INI_SYSTEM</constant>
directives qui sont <constant>INI_ALL</constant>,
<constant>INI_PERDIR</constant> ou <constant>INI_SYSTEM</constant>
reportez-vous à l'annexe <link linkend="ini.list">Liste des directives
du php.ini</link>.
</para>
Expand All @@ -347,7 +347,7 @@ $ PHP_INI_SCAN_DIR=/usr/local/etc/php.d: php
<para>
Modifie la valeur de la directive spécifiée.
Cette instruction n'est utilisable qu'avec les directives PHP de type
<constant>PHP_INI_ALL</constant> et <constant>PHP_INI_PERDIR</constant>.
<constant>INI_ALL</constant> et <constant>INI_PERDIR</constant>.
Pour annuler une valeur qui aurait été modifiée au préalable,
utilisez la valeur <literal>none</literal>.
</para>
Expand All @@ -372,8 +372,8 @@ $ PHP_INI_SCAN_DIR=/usr/local/etc/php.d: php
Cette instruction est utilisée pour activer ou
désactiver une option.
Cette instruction n'est utilisable qu'avec les directives
PHP de type <constant>PHP_INI_ALL</constant> et
<constant>PHP_INI_PERDIR</constant>.
PHP de type <constant>INI_ALL</constant> et
<constant>INI_PERDIR</constant>.
</para>
</listitem>
</varlistentry>
Expand Down Expand Up @@ -464,8 +464,8 @@ $ PHP_INI_SCAN_DIR=/usr/local/etc/php.d: php
et la valeur correspondante. Les constantes PHP ne sont
pas utilisables : il faut mettre la valeur entière.
Cependant, seules les valeurs des configurations dans
<constant>PHP_INI_USER</constant> peuvent être fixées de cette manière,
celles dans <constant>PHP_INI_PERDIR</constant> ne peuvent l'être,
<constant>INI_USER</constant> peuvent être fixées de cette manière,
celles dans <constant>INI_PERDIR</constant> ne peuvent l'être,
car ces valeurs de configurations sont relues à chaque requête.
</simpara>
</sect2>
Expand Down
2 changes: 1 addition & 1 deletion language-snippets.ent
Original file line number Diff line number Diff line change
Expand Up @@ -2007,7 +2007,7 @@ l&#39;utilisation des directives de configuration.</para>'>
<!ENTITY extension.runtime '<simpara xmlns="http://docbook.org/ns/docbook">Le comportement de ces fonctions est
affecté par la configuration dans le fichier &php.ini;.</simpara>'>

<!ENTITY ini.php.constants 'Pour plus de détails sur les modes PHP_INI_*,
<!ENTITY ini.php.constants 'Pour plus de détails sur les modes INI_*,
reportez-vous à <xref xmlns="http://docbook.org/ns/docbook" linkend="configuration.changes.modes"/>.'>

<!-- Used in reference/$extname/constants.xml -->
Expand Down
2 changes: 1 addition & 1 deletion language/namespaces.xml
Original file line number Diff line number Diff line change
Expand Up @@ -427,7 +427,7 @@ echo \Foo\Bar\FOO; // Devient la constante Foo\Bar\FOO
Notez que pour accéder à n'importe quelle classe, fonction ou constante
globale, un nom absolu peut être utilisé, tel que
<function>\strlen</function> ou <classname>\Exception</classname> ou
<literal>\INI_ALL</literal>.
\<constant>INI_ALL</constant>.
<example>
<title>Accès aux classes, fonctions et constantes globales depuis un espace de noms</title>
<programlisting role="php">
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></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></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></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></entry>
</row>
</tbody>
Expand Down
26 changes: 13 additions & 13 deletions reference/apcu/ini.xml
Original file line number Diff line number Diff line change
Expand Up @@ -63,79 +63,79 @@
<row>
<entry><link linkend="ini.apcu.enabled">apc.enabled</link></entry>
<entry>"1"</entry>
<entry>PHP_INI_SYSTEM</entry>
<entry><constant>INI_SYSTEM</constant></entry>
<entry></entry>
</row>
<row>
<entry><link linkend="ini.apcu.shm-segments">apc.shm_segments</link></entry>
<entry>"1"</entry>
<entry>PHP_INI_SYSTEM</entry>
<entry><constant>INI_SYSTEM</constant></entry>
<entry></entry>
</row>
<row>
<entry><link linkend="ini.apcu.shm-size">apc.shm_size</link></entry>
<entry>"32M"</entry>
<entry>PHP_INI_SYSTEM</entry>
<entry><constant>INI_SYSTEM</constant></entry>
<entry></entry>
</row>
<row>
<entry><link linkend="ini.apcu.entries-hint">apc.entries_hint</link></entry>
<entry>"4096"</entry>
<entry>PHP_INI_SYSTEM</entry>
<entry><constant>INI_SYSTEM</constant></entry>
<entry></entry>
</row>
<row>
<entry><link linkend="ini.apcu.ttl">apc.ttl</link></entry>
<entry>"0"</entry>
<entry>PHP_INI_SYSTEM</entry>
<entry><constant>INI_SYSTEM</constant></entry>
<entry></entry>
</row>
<row>
<entry><link linkend="ini.apcu.gc-ttl">apc.gc_ttl</link></entry>
<entry>"3600"</entry>
<entry>PHP_INI_SYSTEM</entry>
<entry><constant>INI_SYSTEM</constant></entry>
<entry></entry>
</row>
<row>
<entry><link linkend="ini.apcu.mmap-file-mask">apc.mmap_file_mask</link></entry>
<entry>NULL</entry>
<entry>PHP_INI_SYSTEM</entry>
<entry><constant>INI_SYSTEM</constant></entry>
<entry></entry>
</row>
<row>
<entry><link linkend="ini.apcu.slam-defense">apc.slam_defense</link></entry>
<entry>"1"</entry>
<entry>PHP_INI_SYSTEM</entry>
<entry><constant>INI_SYSTEM</constant></entry>
<entry></entry>
</row>
<row>
<entry><link linkend="ini.apcu.enable-cli">apc.enable_cli</link></entry>
<entry>"0"</entry>
<entry>PHP_INI_SYSTEM</entry>
<entry><constant>INI_SYSTEM</constant></entry>
<entry></entry>
</row>
<row>
<entry><link linkend="ini.apcu.use-request-time">apc.use_request_time</link></entry>
<entry>"0"</entry>
<entry>PHP_INI_ALL</entry>
<entry><constant>INI_ALL</constant></entry>
<entry>Antérieurement à APCu 5.1.19, la valeur par défaut était "1".</entry>
</row>
<row>
<entry><link linkend="ini.apcu.serializer">apc.serializer</link></entry>
<entry>"php"</entry>
<entry>PHP_INI_SYSTEM</entry>
<entry><constant>INI_SYSTEM</constant></entry>
<entry>Antérieurement à APCu 5.1.15, la valeur par défaut était "default".</entry>
</row>
<row>
<entry><link linkend="ini.apcu.coredump-unmap">apc.coredump_unmap</link></entry>
<entry>"0"</entry>
<entry>PHP_INI_SYSTEM</entry>
<entry><constant>INI_SYSTEM</constant></entry>
<entry></entry>
</row>
<row>
<entry><link linkend="ini.apcu.preload-path">apc.preload_path</link></entry>
<entry>NULL</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/bc/ini.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,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 @@ -21,43 +21,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>À partir de PHP 8.0.0</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 @@ -22,7 +22,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 @@ -21,31 +21,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>Avant PHP 8.0.0, la valeur par défaut était "90.583333"</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>Avant PHP 8.0.0, la valeur par défaut était "90.583333"</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>À partir de PHP 8.2, un avertissement est émis si l'option est définie
avec une valeur invalide ou une chaîne vide.</entry>
</row>
Expand Down
2 changes: 1 addition & 1 deletion reference/dba/setup.xml
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@
<link linkend="ini.dba.default_handler">dba.default_handler</link>
</entry>
<entry>DBA_DEFAULT</entry>
<entry>PHP_INI_ALL</entry>
<entry><constant>INI_ALL</constant></entry>
<entry><!-- leave empty, this will be filled by an automatic script --></entry>
</row>
</tbody>
Expand Down
Loading

0 comments on commit d26f887

Please sign in to comment.