-
Notifications
You must be signed in to change notification settings - Fork 237
CheckAuthSupport
Troy Davisson edited this page Mar 5, 2016
·
2 revisions
Note: This page documents capabilities available in the older 1.x version. Please see this repository's README file for the new 2.x version documentation.
CheckAuthSupport ( string $auth_type )
Tries to determine if the requested authentication type is supported. Not very reliable
$auth_type
- Authentication type. Supported types are basic and digest
Boolean
Returns TRUE if requested type is supported. Returns FALSE otherwise
<?php
if ($rets->CheckAuthSupport("digest")) {
echo "Digest is supported";
}