Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 13 additions & 2 deletions reference/funchand/functions/get-defined-functions.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,10 @@
<term><parameter>exclude_disabled</parameter></term>
<listitem>
<para>
Whether disabled functions should be excluded from the return value.
Whether disabled functions should be excluded from the return value. This parameter has no effect
since PHP 8.0.0.
</para>
&warn.deprecated.feature-8-5-0;
</listitem>
</varlistentry>
</variablelist>
Expand Down Expand Up @@ -53,11 +55,20 @@
</row>
</thead>
<tbody>
<row>
<entry>8.5.0</entry>
<entry>
The <parameter>exclude_disabled</parameter> parameter has been deprecated,
as it no longer has any effect.
</entry>
</row>
<row>
<entry>8.0.0</entry>
<entry>
The default value of the <parameter>exclude_disabled</parameter> parameter
has been changed from &false; to &true;.
has been changed from &false; to &true;. However, it will not have
any effect as disabled functions are removed from the function table at
compile time.
</entry>
</row>
<row>
Expand Down