在 PECL 源代码中,包含了特定厂商的字符串用于 Microsoft 系统。
但是,如果您只想传递完全不同的内容,例如 Cisco 的特定内容,这是可能的。
PECL 的源代码中不包含这一点并不意味着您不能使用它们。
说得更好些,Radius 服务器字典中的所有内容都可以作为字符串放入。
例如,以下示例用于写入 h323-gw-id
<?php
$res = radius_acct_open ();
radius_add_server($res,'127.0.0.1', 1813, 'mysecret', 10, 2);
radius_create_request($res, RADIUS_ACCOUNTING_REQUEST);
radius_put_vendor_string($res,9,33 ,"h323-gw-id=123456");
$result = radius_send_request($res);
?>