MongoGridFSFile::getBytes
(PECL mongo >=0.9.0)
MongoGridFSFile::getBytes — Returns this file's contents as a string of bytes
Описание
public string MongoGridFSFile::getBytes
( void
)
Список параметров
У этой функции нет параметров.
Возвращаемые значения
Returns a string of the bytes in the file.
Примеры
Пример #1 MongoGridFSFile::getBytes() example
<?php
$images = $db->my_db->getGridFS('images');
$image = $images->findOne('jwage.png');
header('Content-type: image/png;');
echo $image->getBytes();
?>