MongoCollection::toIndexString

(PECL mongo >=0.9.0)
Converts keys specifying an index to its identifying string
static protected string MongoCollection::toIndexString ( mixed $keys )
Parameters:
keys

Field or fields to convert to the identifying string

Returns:

Returns a string that describes the index.

This method is deprecated since version 1.5.0.

Changelog:
1.5.0

This method has been deprecated.

Examples:
MongoCollection::toIndexString() example

This example shows how you can create an index name out of keys. Because this is a protected (static) method, you need to overload it in a child class first.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php
// Create inherited class to make the method "public".
class MyCollection extends MongoCollection
{
    static public function toIndexString($a)
    {
        return parent::toIndexString($a);
    }
}
 
echo MyCollection::toIndexString("foo"), "\n";
// Outputs: foo_1
 
echo MyCollection::toIndexString(array('name' => 1, 'age' => -1)), "\n";
// Outputs: name_1_age_-1
?>
doc_php
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.