|
MongoDB::authenticateLog in to this database
Description
public array MongoDB::authenticate
( string
$username
, string $password
)This method causes its connection to be authenticated. If authentication is enabled for the database server (it's not, by default), you need to log in before the database will allow you to do anything. In general, you should use the authenticate built into MongoClient::__construct in preference to this method. If you authenticate on connection and the connection drops and reconnects during your session, you'll be reauthenticated. If you manually authenticated using this method and the connection drops, you'll have to call this method again once you're reconnected. This method is identical to running:
<?php Once a connection has been authenticated, it can only be un-authenticated by using the "logout" database command:
<?php Parameters
Return ValuesReturns database response. If the login was successful, it will return
<?php
<?php See AlsoMongoDB core docs on » authenticate. Changelog
|