Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

mongobindata(3) [php man page]

MONGOBINDATA(3) 							 1							   MONGOBINDATA(3)

The MongoBinData class

INTRODUCTION
An object that can be used to store or retrieve binary data from the database. The maximum size of a single object that can be inserted into the database is 16MB. For data that is larger than this (movies, music, Henry Kissinger's autobiography), use MongoGridFS. For data that is smaller than 16MB, you may find it easier to embed it within the docu- ment using MongoBinData. For example, to embed an image in a document, one could write: Example #1 <?php $profile = array( "username" => "foobity", "pic" => new MongoBinData(file_get_contents("gravatar.jpg"), MongoBinData::GENERIC), ); $users->save($profile); ?> This class contains a $type field, which currently gives no additional functionality in the PHP driver or the database. There are seven predefined types, which are defined as class constants below. For backwards compatibility, the PHP driver uses MongoBinData::BYTE_ARRAY as the default; however, this may change to MongoBinData::GENERIC in the future. Users are encouraged to specify a type in MongoBinData.__con- struct(3). CLASS SYNOPSIS
MongoBinData MongoBinData Constants o const int$MongoBinData::GENERIC0 o const int$MongoBinData::FUNC1 o const int$MongoBinData::BYTE_ARRAY2 o const int$MongoBinData::UUID3 o const int$MongoBinData::UUID_RFC41224 o const int$MongoBinData::MD55 o const int$MongoBinData::CUSTOM128 Fields o public string$bin o public int$type2 Methods o public MongoBinData::__construct (string $data, [int $type]) o public string MongoBinData::__toString (void ) PREDEFINED CONSTANTS
BINARY DATA TYPES
o MongoBinData::GENERIC - 0x00 - Generic binary data. o MongoBinData::FUNC - 0x01 - Function. o MongoBinData::BYTE_ARRAY - 0x02 - Generic binary data (deprecated in favor of MongoBinData::GENERIC). o MongoBinData::UUID - 0x03 - Universally unique identifier (deprecated in favor of MongoBinData::UUID_RFC4122). o MongoBinData::UUID_RFC4122 - 0x04 - Universally unique identifier (according to RFC 4122). o MongoBinData::MD5 - 0x05 - MD5. o MongoBinData::CUSTOM - 0x80 - User-defined type. Changelog +--------+---------------------------------------------------+ |Version | | | | | | | Description | | | | +--------+---------------------------------------------------+ | 1.5.0 | | | | | | | Added MongoBinData::GENERIC and MongoB- | | | inData::UUID_RFC4122 constants. | | | | +--------+---------------------------------------------------+ PHP Documentation Group MONGOBINDATA(3)

Check Out this Related Man Page

REFLECTIONMETHOD(3)							 1						       REFLECTIONMETHOD(3)

The ReflectionMethod class

INTRODUCTION
The ReflectionMethod class reports information about a method. CLASS SYNOPSIS
ReflectionMethod ReflectionMethodextends ReflectionFunctionAbstractReflector Constants o const integer$ReflectionMethod::IS_STATIC1 o const integer$ReflectionMethod::IS_PUBLIC256 o const integer$ReflectionMethod::IS_PROTECTED512 o const integer$ReflectionMethod::IS_PRIVATE1024 o const integer$ReflectionMethod::IS_ABSTRACT2 o const integer$ReflectionMethod::IS_FINAL4 Properties o public$name o public$class Methods o public ReflectionMethod::__construct (mixed $class, string $name) o publicstatic string ReflectionMethod::export (string $class, string $name, [bool $return = false]) o public Closure ReflectionMethod::getClosure (object $object) o public ReflectionClass ReflectionMethod::getDeclaringClass (void ) o public int ReflectionMethod::getModifiers (void ) o public ReflectionMethod ReflectionMethod::getPrototype (void ) o public mixed ReflectionMethod::invoke (object $object, [mixed $parameter], [mixed $...]) o public mixed ReflectionMethod::invokeArgs (object $object, array $args) o public bool ReflectionMethod::isAbstract (void ) o public bool ReflectionMethod::isConstructor (void ) o public bool ReflectionMethod::isDestructor (void ) o public bool ReflectionMethod::isFinal (void ) o public bool ReflectionMethod::isPrivate (void ) o public bool ReflectionMethod::isProtected (void ) o public bool ReflectionMethod::isPublic (void ) o public bool ReflectionMethod::isStatic (void ) o public void ReflectionMethod::setAccessible (bool $accessible) o public string ReflectionMethod::__toString (void ) Inherited methods o finalprivate void ReflectionFunctionAbstract::__clone (void ) o public ReflectionClass ReflectionFunctionAbstract::getClosureScopeClass (void ) o public object ReflectionFunctionAbstract::getClosureThis (void ) o public string ReflectionFunctionAbstract::getDocComment (void ) o public int ReflectionFunctionAbstract::getEndLine (void ) o public ReflectionExtension ReflectionFunctionAbstract::getExtension (void ) o public string ReflectionFunctionAbstract::getExtensionName (void ) o public string ReflectionFunctionAbstract::getFileName (void ) o public string ReflectionFunctionAbstract::getName (void ) o public string ReflectionFunctionAbstract::getNamespaceName (void ) o public int ReflectionFunctionAbstract::getNumberOfParameters (void ) o public int ReflectionFunctionAbstract::getNumberOfRequiredParameters (void ) o public array ReflectionFunctionAbstract::getParameters (void ) o public string ReflectionFunctionAbstract::getShortName (void ) o public int ReflectionFunctionAbstract::getStartLine (void ) o public array ReflectionFunctionAbstract::getStaticVariables (void ) o public bool ReflectionFunctionAbstract::inNamespace (void ) o public bool ReflectionFunctionAbstract::isClosure (void ) o public bool ReflectionFunctionAbstract::isDeprecated (void ) o public bool ReflectionFunctionAbstract::isGenerator (void ) o public bool ReflectionFunctionAbstract::isInternal (void ) o public bool ReflectionFunctionAbstract::isUserDefined (void ) o public bool ReflectionFunctionAbstract::isVariadic (void ) o public bool ReflectionFunctionAbstract::returnsReference (void ) o abstractpublic void ReflectionFunctionAbstract::__toString (void ) PROPERTIES
o $name -Method name o $class -Class name PREDEFINED CONSTANTS
REFLECTIONMETHOD MODIFIERS
o ReflectionMethod::IS_STATIC -Indicates that the method is static. o ReflectionMethod::IS_PUBLIC -Indicates that the method is public. o ReflectionMethod::IS_PROTECTED -Indicates that the method is protected. o ReflectionMethod::IS_PRIVATE -Indicates that the method is private. o ReflectionMethod::IS_ABSTRACT -Indicates that the method is abstract. o ReflectionMethod::IS_FINAL -Indicates that the method is final. PHP Documentation Group REFLECTIONMETHOD(3)
Man Page