radius_put_int

(PECL radius >= 1.1.0)

radius_put_int附加一个整数属性

描述

radius_put_int(
    resource $radius_handle,
    int $type,
    int $value,
    int $options = 0,
    int $tag = ?
): bool

将一个整数属性附加到当前 RADIUS 请求中。

注意:

必须通过 radius_create_request() 创建请求,然后才能调用此函数。

参数

radius_handle

RADIUS 资源。

type

属性类型。

value

属性值。

options

属性选项的位掩码。 可用的选项包括 RADIUS_OPTION_TAGGEDRADIUS_OPTION_SALT

tag

属性标签。 除非设置了 RADIUS_OPTION_TAGGED 选项,否则此参数会被忽略。

返回值

成功时返回 true,失败时返回 false

变更日志

版本 描述
PECL radius 1.3.0 添加了 optionstag 参数。

示例

示例 #1 radius_put_int() 示例

<?php
if (!radius_put_int($res, RAD_FRAMED_PROTOCOL, RAD_PPP)) {
echo
'RadiusError:' . radius_strerror($res). "\n<br />";
exit;
}
?>

参见

添加笔记

用户贡献的笔记

此页面没有用户贡献的笔记。
To Top