Skip to content

Commit edf7961

Browse files
committed
Normalize notation of php.ini
1 parent 87a15df commit edf7961

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

components/http_foundation/session_configuration.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ So-called 'native' handlers, are save handlers which are either compiled into
2626
PHP or provided by PHP extensions, such as PHP-Sqlite, PHP-Memcached and so on.
2727

2828
All native save handlers are internal to PHP and as such, have no public facing API.
29-
They must be configured by PHP ini directives, usually ``session.save_path`` and
29+
They must be configured by php.ini directives, usually ``session.save_path`` and
3030
potentially other driver specific directives. Specific details can be found in
3131
docblock of the ``setOptions()`` method of each class.
3232

@@ -87,7 +87,7 @@ Configuring PHP Sessions
8787
~~~~~~~~~~~~~~~~~~~~~~~~
8888

8989
The :class:`Symfony\\Component\\HttpFoundation\\Session\\Storage\\NativeSessionStorage`
90-
can configure most of the PHP ini configuration directives which are documented
90+
can configure most of the php.ini configuration directives which are documented
9191
at `php.net/session.configuration`_.
9292

9393
To configure these settings, pass the keys (omitting the initial ``session.`` part
@@ -131,7 +131,7 @@ example if these were set to ``5/100`` respectively, it would mean a probability
131131
of 5%. Similarly, ``3/4`` would mean a 3 in 4 chance of being called, i.e. 75%.
132132

133133
If the garbage collection handler is invoked, PHP will pass the value stored in
134-
the PHP ini directive ``session.gc_maxlifetime``. The meaning in this context is
134+
the php.ini directive ``session.gc_maxlifetime``. The meaning in this context is
135135
that any stored session that was saved more than ``maxlifetime`` ago should be
136136
deleted. This allows one to expire records based on idle time.
137137

components/http_foundation/sessions.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Quick example::
5050

5151
.. caution::
5252

53-
Symfony sessions are incompatible with PHP ini directive ``session.auto_start = 1``
53+
Symfony sessions are incompatible with php.ini directive ``session.auto_start = 1``
5454
This directive should be turned off in ``php.ini``, in the webserver directives or
5555
in ``.htaccess``.
5656

cookbook/form/form_collections.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ great, your user can't actually add any new tags yet.
258258
This directive limits recursion to 100 calls which may not be enough for
259259
rendering the form in the template if you render the whole form at
260260
once (e.g ``form_widget(form)``). To fix this you can set this directive
261-
to a higher value (either via a PHP ini file or via :phpfunction:`ini_set`,
261+
to a higher value (either via a php.ini file or via :phpfunction:`ini_set`,
262262
for example in ``app/autoload.php``) or render each form field by hand
263263
using ``form_row``.
264264

reference/configuration/framework.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ full TextMate string would look like this:
7979
8080
Of course, since every developer uses a different IDE, it's better to set
8181
this on a system level. This can be done by setting the ``xdebug.file_link_format``
82-
PHP.ini value to the file link string. If this configuration value is set, then
82+
php.ini value to the file link string. If this configuration value is set, then
8383
the ``ide`` option does not need to be specified.
8484

8585
.. _reference-framework-test:

reference/constraints/File.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ uploadIniSizeErrorMessage
217217
**type**: ``string`` **default**: ``The file is too large. Allowed maximum size is {{ limit }}``
218218

219219
The message that is displayed if the uploaded file is larger than the ``upload_max_filesize``
220-
PHP.ini setting.
220+
php.ini setting.
221221

222222
uploadFormSizeErrorMessage
223223
~~~~~~~~~~~~~~~~~~~~~~~~~~

reference/requirements.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Required
2222
* PHP needs to be a minimum version of PHP 5.3.3
2323
* JSON needs to be enabled
2424
* ctype needs to be enabled
25-
* Your PHP.ini needs to have the ``date.timezone`` setting
25+
* Your php.ini needs to have the ``date.timezone`` setting
2626

2727
Optional
2828
--------
@@ -35,7 +35,7 @@ Optional
3535
* POSIX needs to be enabled (only on \*nix)
3636
* Intl needs to be installed with ICU 4+
3737
* APC 3.0.17+ (or another opcode cache needs to be installed)
38-
* PHP.ini recommended settings
38+
* php.ini recommended settings
3939

4040
* ``short_open_tag = Off``
4141
* ``magic_quotes_gpc = Off``

0 commit comments

Comments
 (0)