radius_put_string

(PECL radius >= 1.1.0)

radius_put_string附加字符串属性

描述

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

将字符串属性附加到当前 RADIUS 请求。通常,radius_put_attr() 是附加字符串属性的更有用函数,因为它支持二进制安全。

注意:

必须通过 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_string() 示例

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

参见

添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top