PHP Doku:: Creates a new code object - mongocode.construct.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzDatenbankerweiterungenAnbieterspezifische DatenbankerweiterungenMongoDB Native DriverTypesThe MongoCode classMongoCode::__construct

Ein Service von Reinhard Neidl - Webprogrammierung.

The MongoCode class

<<The MongoCode class

MongoCode::__toString>>

MongoCode::__construct

(PECL mongo >= 0.8.3)

MongoCode::__constructCreates a new code object

Beschreibung

MongoCode::__construct ( string $code [, array $scope = array() ] )

Parameter-Liste

code

A string of code.

scope

The scope to use for the code.

Rückgabewerte

Returns a new code object.

Beispiele

Beispiel #1 MongoCode::__construct() example

<?php

$code 
= new MongoCode('function() { '.
    
'for(i=0;i<10;i++) {'.
        
'db.foo.update({z : i}, {z : x});'.
    
'}'.
    
'return x-1;'.
 
'}', array("x" => 4));
var_dump($code);

?>

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

object(MongoCode)#1 (2) {
  ["scope"]=>
  array(1) {
    ["x"]=>
    int(4)
  }
  ["code"]=>
  string(80) "function() { for(i=0;i<10;i++) { db.foo.update({z : i}, {z : x}); } return x-1; }"
}

Beispiel #2 Using MongoCode() with $where

This example queries a collection for elements where the 'x' fields is less than $y. Notice that PHP objects can be passed into the JavaScript scope and that the JavaScript function returns a boolean.

<?php

$cursor 
$collection->find(array('$where' => new MongoCode('function() { return this.x < y; }', array('y'=>$y))));

?>

Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)