Document #-style comments support removal in PHP 7

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@336976 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Maciej Sobaczewski 2015-06-16 05:39:25 +00:00
parent 28b60877cc
commit ad46822c2c
2 changed files with 44 additions and 1 deletions

View file

@ -134,6 +134,43 @@ include_path = ".;c:\php\lib"
within .ini files. Example: <literal>open_basedir = ${open_basedir}
":/new/dir"</literal>.
</para>
<sect2 xml:id="configuration.file.changelog">
&reftitle.changelog;
<para>
<informaltable>
<tgroup cols="2">
<thead>
<row>
<entry>&Version;</entry>
<entry>&Description;</entry>
</row>
</thead>
<tbody>
<row>
<entry>7.0.0</entry>
<entry>
Hash marks (<literal>#</literal>) are no longer recognized as comments.
</entry>
</row>
<row>
<entry>5.3.0</entry>
<entry>
Hash marks (<literal>#</literal>) should no longer be used as comments
and will throw a deprecation warning if used.
</entry>
</row>
<row>
<entry>5.1.0</entry>
<entry>
It is possible to refer to existing .ini variables from within .ini files.
</entry>
</row>
</tbody>
</tgroup>
</informaltable>
</para>
</sect2>
</sect1>
<sect1 xml:id="configuration.file.per-user">

View file

@ -89,12 +89,18 @@
Added new <constant>INI_SCANNER_TYPED</constant> mode.
</entry>
</row>
<row>
<entry>7.0.0</entry>
<entry>
Hash marks (<literal>#</literal>) are no longer recognized as comments.
</entry>
</row>
<row>
<entry>5.3.0</entry>
<entry>
Added optional <parameter>scanner_mode</parameter> parameter.
Single quotes may now be used around variable assignments.
Hash marks (<literal>#</literal>) may no longer be used as comments
Hash marks (<literal>#</literal>) should no longer be used as comments
and will throw a deprecation warning if used.
</entry>
</row>