PHP.nl

radius_acct_open

radius_acct_open

Creates a Radius handle for accounting

resource **radius_acct_open**

Returns a handle on success, false on error. This function only fails if insufficient memory is available.

Voorbeeld: example

<?php
$res = radius_acct_open ()
    or die ("Could not create handle");
print "Handle successfully created";
?>