update : 2015.11.03
php.shukuma.com검색:
|
The MongoBinData class(PECL mongo >= 0.8.1) 소개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 document using MongoBinData. For example, to embed an image in a document, one could write:
<?php
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
{
/* 상수 */
/* Fields */
public
string
$bin
;
public
int
$type
= 2
;
/* 메소드 */
}예약 상수Binary Data Types
변경점
Table of Contents
|