(PECL radius >= 1.1.0)
radius_put_string — 附加字符串属性
$radius_handle
,$type
,$value
,$options
= 0,$tag
= ?将字符串属性附加到当前 RADIUS 请求。通常,radius_put_attr() 是附加字符串属性的更有用函数,因为它支持二进制安全。
注意:
必须通过 radius_create_request() 创建请求才能调用此函数。
radius_handle
RADIUS 资源。
type
属性类型。
value
属性值。底层库期望此值以空字符结尾,因此此参数不支持二进制安全。
options
属性选项的位掩码。可用的选项包括 RADIUS_OPTION_TAGGED
和 RADIUS_OPTION_SALT
。
tag
属性标签。除非设置了 RADIUS_OPTION_TAGGED
选项,否则此参数将被忽略。
版本 | 描述 |
---|---|
PECL radius 1.3.0 | 添加了 options 和 tag 参数。 |
示例 #1 radius_put_string() 示例
<?php
if (!radius_put_string($res, RADIUS_USER_NAME, 'billy')) {
echo 'RadiusError:' . radius_strerror($res). "\n<br />";
exit;
}
?>