Skip to main content
Active reading [<https://www.youtube.com/watch?v=1Dax90QyXgI&t=17m54s>].
Source Link
Peter Mortensen
  • 31.4k
  • 22
  • 110
  • 134

In PHP, you could use the following code:

$collection->find(array('name'=> array('$regex' => 'm'));

In PHP, you could use following code:

$collection->find(array('name'=> array('$regex' => 'm'));

In PHP, you could use the following code:

$collection->find(array('name'=> array('$regex' => 'm'));
deleted 3 characters in body
Source Link
Ondrej Slinták
  • 32.1k
  • 21
  • 97
  • 127

in phpIn PHP, you shouldcould use coding like thisfollowing code:

$collection->find(array('name'=> array('$regex' => 'm'));

in php, you should use coding like this:

$collection->find(array('name'=> array('$regex' => 'm'));

In PHP, you could use following code:

$collection->find(array('name'=> array('$regex' => 'm'));
corrected to be php syntax and made the variables names fit the php man pages of the mongo driver
Source Link

in php, you should use coding like this:

col.find$collection->find(array('name'=> array('$regex' => 'm'));

in php, you should coding like this:

col.find(array('name'=> array('$regex' => 'm'));

in php, you should use coding like this:

$collection->find(array('name'=> array('$regex' => 'm'));
code highlight
Source Link
om-nom-nom
  • 62.9k
  • 13
  • 186
  • 231
Loading
Source Link
Leon
  • 2.9k
  • 5
  • 22
  • 32
Loading