downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

MongoCollection::__toString> <MongoCollection::setSlaveOkay
[edit] Last updated: Fri, 25 May 2012

view this page in

MongoCollection::toIndexString

(No version information available, might only be in SVN)

MongoCollection::toIndexStringConverts keys specifying an index to its identifying string

Description

static protected string MongoCollection::toIndexString ( mixed $keys )

Parameters

keys

Field or fields to convert to the identifying string

Return Values

Returns a string that describes the index.

Examples

Example #1 MongoCollection::toIndexString() example

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

<?php
// Create inheritec 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
?>

See Also

MongoDB core docs on » indexes.



add a note add a note User Contributed Notes MongoCollection::toIndexString
There are no user contributed notes for this page.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites