Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетил 16331 программист и 1778 роботов. Сейчас ищут 2067 программистов ...
MongoGridFSFile::getBytes - Returns this file's contents as a string of bytes
Вернуться к: MongoGridFSFile
MongoGridFSFile::getBytes
(PECL mongo >=0.9.0)
MongoGridFSFile::getBytes — Returns this file's contents as a string of bytes
Описание
public string MongoGridFSFile::getBytes
( void
)
Warning: this will load the file into memory. If the file is bigger than your memory, this will cause problems!
Список параметров
У этой функции нет параметров.
Возвращаемые значения
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();
?>
Вернуться к: MongoGridFSFile