snmp_get_quick_print

(PHP 4, PHP 5, PHP 7, PHP 8)

snmp_get_quick_print 获取当前 NET-SNMP 库的 quick_print 设置的值

说明

snmp_get_quick_print(): bool

返回当前 NET-SNMP 库中存储的 quick_print 值。 quick_print 默认为 off。

参数

此函数没有参数。

返回值

如果 quick_print 为 on,返回 true 否则为 false

范例

示例 #1 snmp_get_quick_print() 示例

<?php
$quickprint
= snmp_get_quick_print();
?>

参见

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top