|
118 | 118 | <entry>PHP_INI_ALL</entry> |
119 | 119 | <entry></entry> |
120 | 120 | </row> |
| 121 | + <row> |
| 122 | + <entry><link linkend="ini.syslog.facility">syslog.facility</link></entry> |
| 123 | + <entry>"LOG_USER"</entry> |
| 124 | + <entry>PHP_INI_SYSTEM</entry> |
| 125 | + <entry>Available as of PHP 7.3.0.</entry> |
| 126 | + </row> |
| 127 | + <row> |
| 128 | + <entry><link linkend="ini.syslog.filter">syslog.filter</link></entry> |
| 129 | + <entry>"no-ctrl"</entry> |
| 130 | + <entry>PHP_INI_ALL</entry> |
| 131 | + <entry>Available as of PHP 7.3.0.</entry> |
| 132 | + </row> |
| 133 | + <row> |
| 134 | + <entry><link linkend="ini.syslog.ident">syslog.ident</link></entry> |
| 135 | + <entry>"php"</entry> |
| 136 | + <entry>PHP_INI_SYSTEM</entry> |
| 137 | + <entry>Available as of PHP 7.3.0.</entry> |
| 138 | + </row> |
121 | 139 | </tbody> |
122 | 140 | </tgroup> |
123 | 141 | </table> |
|
489 | 507 | </listitem> |
490 | 508 | </varlistentry> |
491 | 509 |
|
| 510 | + <varlistentry xml:id="ini.syslog.facility"> |
| 511 | + <term> |
| 512 | + <parameter>syslog.facility</parameter> |
| 513 | + <type>string</type> |
| 514 | + </term> |
| 515 | + <listitem> |
| 516 | + <para> |
| 517 | + Specifies what type of program is logging the message. |
| 518 | + Only effective if <link linkend="ini.error-log">error_log</link> is set to "syslog". |
| 519 | + </para> |
| 520 | + </listitem> |
| 521 | + </varlistentry> |
| 522 | + |
| 523 | + <varlistentry xml:id="ini.syslog.filter"> |
| 524 | + <term> |
| 525 | + <parameter>syslog.filter</parameter> |
| 526 | + <type>string</type> |
| 527 | + </term> |
| 528 | + <listitem> |
| 529 | + <para> |
| 530 | + Specifies the filter type to filter the logged messages. Allowed |
| 531 | + characters are passed unmodified; all others are written in their |
| 532 | + hexadecimal representation prefixed with <literal>\x</literal>. There are |
| 533 | + three supported filter types: |
| 534 | + <itemizedlist> |
| 535 | + <listitem> |
| 536 | + <simpara><literal>all</literal> – all characters</simpara> |
| 537 | + </listitem> |
| 538 | + <listitem> |
| 539 | + <simpara><literal>no-ctrl</literal> – all characters except control characters</simpara> |
| 540 | + </listitem> |
| 541 | + <listitem> |
| 542 | + <simpara><literal>ascii</literal> – all printable ASCII characters and <literal>NL</literal></simpara> |
| 543 | + </listitem> |
| 544 | + </itemizedlist> |
| 545 | + Only effective if <link linkend="ini.error-log">error_log</link> is set to "syslog". |
| 546 | + </para> |
| 547 | + </listitem> |
| 548 | + </varlistentry> |
| 549 | + |
| 550 | + <varlistentry xml:id="ini.syslog.ident"> |
| 551 | + <term> |
| 552 | + <parameter>syslog.ident</parameter> |
| 553 | + <type>string</type> |
| 554 | + </term> |
| 555 | + <listitem> |
| 556 | + <para> |
| 557 | + Specifies the ident string which is prepended to every message. |
| 558 | + Only effective if <link linkend="ini.error-log">error_log</link> is set to "syslog". |
| 559 | + </para> |
| 560 | + </listitem> |
| 561 | + </varlistentry> |
| 562 | + |
492 | 563 | </variablelist> |
493 | 564 | </para> |
494 | 565 | </section> |
|
0 commit comments