PHP Conference Japan 2024

radius_put_int

(PECL radius >= 1.1.0)

radius_put_int附加一个整数属性

描述

radius_put_int(
    资源 $radius_handle,
    整数 $type,
    整数 $value,
    整数 $options = 0,
    整数 $tag = ?
): 布尔值

将一个整数属性附加到当前 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