MongoDB\BSON\Javascript::getScope

(mongodb >=1.2.0)

MongoDB\BSON\Javascript::getScopeReturns the Javascript's scope document

Opis

final public MongoDB\BSON\Javascript::getScope ( void ) : object|null

Parametry

Ta funkcja nie posiada parametrów.

Zwracane wartości

Returns the Javascript's scope document.

Błędy/Wyjątki

Przykłady

Przykład #1 MongoDB\BSON\Javascript::getScope() example

<?php

$js 
= new MongoDB\BSON\Javascript('function foo(bar) { return bar; }');
var_dump($js->getScope());

$js = new MongoDB\BSON\Javascript('function foo() { return foo; }', ['foo' => 42]);
var_dump($js->getScope());

?>

Powyższy przykład wyświetli:

NULL
object(stdClass)#1 (1) {
  ["foo"]=>
  int(42)
}

Zobacz też:

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top