mixed File_SMBPasswd::verifyAccount (string $user, string $pass)
mixed File_SMBPasswd::verifyAccount
This method verifies the given username and plaintext-password against the entry in the loaded smbpasswd file.
string $user - username to be verified
string $pass - the plaintext password
mixed - Returns TRUE on success, FALSE on failure.
Example 38-1. Using File_SMBPasswd::verifyAccount()
<?php require_once 'File/SMBPasswd.php'; $fh = new File_SMBPasswd('/usr/local/private/smbpasswd'); $fh->load(); if ($fh->verifyAccount('mbretter', 'MyPw')) { echo "Account is valid"; } else { echo "Account is in-valid"; } ?>