MongoDB\BSON\Javascript::__construct

(mongodb >=1.0.0)

MongoDB\BSON\Javascript::__constructConstruit un nouvel objet Javascript

Description

final public MongoDB\BSON\Javascript::__construct(string $code, array|object|null $scope = null)

Liste de paramètres

code (string)

Le code Javascript.

scope (array|object)

La portée du Javascript.

Erreurs / Exceptions

Historique

Version Description
PECL mongodb 1.2.0

MongoDB\Driver\Exception\InvalidArgumentException est levée si code contient un octet nul. Auparavant, les valeurs étaient tronquées au premier octet nul.

Exemples

Exemple #1 MongoDB\BSON\Javascript::__construct() example

<?php

$code
= new MongoDB\BSON\Javascript('function() { return 1; }');
var_dump($code);

$codews = new MongoDB\BSON\Javascript('function() { return foo; }', ['foo' => 'bar']);
var_dump($codews);

?>

L'exemple ci-dessus va afficher :

object(MongoDB\BSON\Javascript)#1 (2) {
  ["javascript"]=>
  string(24) "function() { return 1; }"
  ["scope"]=>
  object(stdClass)#2 (0) {
  }
}
object(MongoDB\BSON\Javascript)#2 (2) {
  ["javascript"]=>
  string(26) "function() { return foo; }"
  ["scope"]=>
  object(stdClass)#1 (1) {
    ["foo"]=>
    string(3) "bar"
  }
}

Voir aussi

add a note add a note

User Contributed Notes

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