(PECL radius >= 1.1.0)
radius_put_int — 附加一个整数属性
$radius_handle
,$type
,$value
,$options
= 0,$tag
= ?将一个整数属性附加到当前 RADIUS 请求中。
注意:
必须通过 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_int() 示例
<?php
if (!radius_put_int($res, RAD_FRAMED_PROTOCOL, RAD_PPP)) {
echo 'RadiusError:' . radius_strerror($res). "\n<br />";
exit;
}
?>