Skip to content
Open
Show file tree
Hide file tree
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
25 changes: 8 additions & 17 deletions features/commandline.xml
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,6 @@ Usage: php [options] [-f] <file> [--] [args...]
-s Output HTML syntax highlighted source.
-v Version number
-w Output source with stripped comments and whitespace.
-z <file> Load Zend extension <file>.

args... Arguments passed to script. Use -- args when first argument
starts with - or script is read from stdin
Expand Down Expand Up @@ -833,27 +832,14 @@ Zend Engine v2.3.0, Copyright (c) 1998-2009 Zend Technologies
</note>
</entry>
</row>
<row>
<entry>-z</entry>
<entry>--zend-extension</entry>
<entry>
<para>
Load Zend extension. If only a filename is given, PHP tries to load
this extension from the current default library path on your system
(usually <filename>/etc/ld.so.conf</filename> on Linux systems, for
example). Passing a filename with an absolute path will
not use the system's library search path. A relative filename including
directory information will tell PHP to try
loading the extension relative to the current directory.
</para>
</entry>
</row>
<row>
<entry></entry>
<entry>--ini</entry>
<entry>
<para>
Show configuration file names and scanned directories.
Show configuration file names and scanned directories. Optionally,
pass <literal>--ini=diff</literal> to show the differences between
the loaded configuration files and the default configuration.
<example>
<title><literal>--ini</literal> example</title>
<programlisting role="shell">
Expand All @@ -866,6 +852,11 @@ Additional .ini files parsed: (none)
]]>
</programlisting>
</example>
<note>
<simpara>
The <literal>--ini=diff</literal> option is not available prior to PHP 8.5.0.
</simpara>
</note>
</para>
</entry>
</row>
Expand Down
24 changes: 23 additions & 1 deletion reference/info/functions/cli-get-process-title.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,29 @@
is unsupported.
</para>
</refsect1>


<refsect1 role="changelog">
&reftitle.changelog;
<informaltable>
<tgroup cols="2">
<thead>
<row>
<entry>&Version;</entry>
<entry>&Description;</entry>
</row>
</thead>
<tbody>
<row>
<entry>8.5.0</entry>
<entry>
<function>cli_get_process_title</function> will now return an <constant>E_WARNING</constant>
if the process title is too long to be retrieved.
</entry>
</row>
</tbody>
</tgroup>
</informaltable>
</refsect1>
<refsect1 role="examples">
&reftitle.examples;
<para>
Expand Down