MongoDB::forceError

(PECL mongo >=0.9.5)
Creates a database error
public bool MongoDB::forceError ( void )

This method is not very useful for normal MongoDB use. It forces a database error to occur. This means that MongoDB::lastError() will return a generic database error after running this command.

This command is identical to running:

<?php

public function forceError() {
    return $this->command(array('forceerror' => 1));
}

?>

Returns:

Returns the database response.

Changelog:
1.2.11

Emits E_DEPRECATED when used.

doc_php
2016-02-24 16:20:30
Comments
Leave a Comment

Please login to continue.