We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our 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
$auth_type
Boolean
Returns TRUE if requested type is supported. Returns FALSE otherwise
<?php if ($rets->CheckAuthSupport("digest")) { echo "Digest is supported"; }
Connect