略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: MongoGridFSFile::getBytes

2024-05-15

MongoGridFSFile::getBytes

(PECL mongo >=0.9.0)

MongoGridFSFile::getBytesReturns this file's contents as a string of bytes

说明

public MongoGridFSFile::getBytes ( void ) : string

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.

范例

Example #1 MongoGridFSFile::getBytes() example

<?php

$images 
$db->my_db->getGridFS('images');

$image $images->findOne('jwage.png');

header('Content-type: image/png;');
echo 
$image->getBytes();
?>
add a note add a note

User Contributed Notes

There are no user contributed notes for this page.

官方地址:https://www.php.net/manual/en/mongogridfsfile.getbytes.php

北京半月雨文化科技有限公司.版权所有 京ICP备12026184号-3