radius_put_string

(PECL)

radius_put_string -- Attaches a string attribute

说明

bool radius_put_string ( resource radius_handle, int type, string value )

警告

本函数暂无文档,仅有参数列表。

返回值

如果成功则返回 TRUE,失败则返回 FALSE

范例

例子 1. radius_put_string() example

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


add a note add a note User Contributed Notes
There are no user contributed notes for this page.