PHP  
downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | my php.net 
search for in the  
<radius_put_addrradius_put_int>
Last updated: Mon, 16 Jul 2012

radius_put_attr

(PECL)

radius_put_attr -- Attaches a binary attribute

说明

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

警告

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

返回值

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

例子 1. radius_put_attr() example

<?php
mt_srand
(time());
$chall = mt_rand();
$chapval = md5(pack('Ca*',1 , 'sepp' . $chall));
$pass = pack('CH*', 1, $chapval);
if (!
radius_put_attr($res, RADIUS_CHAP_PASSWORD, $pass)) {
   echo
'RadiusError:' . radius_strerror($res). "\n<br />";
   exit;
}
?>




<radius_put_addrradius_put_int>
 Last updated: Mon, 16 Jul 2012
 
Copyright © 2001-2005 The PHP Group
All rights reserved.
This unofficial mirror is operated at: http://manual.phpv.net/
Last updated: Thu Jul 7 19:13:47 2005 CST