PHP Doku:: Returns this file s contents as a string of bytes - mongogridfsfile.getbytes.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzDatenbankerweiterungenAnbieterspezifische DatenbankerweiterungenMongoDB Native DriverGridFS ClassesThe MongoGridFSFile classMongoGridFSFile::getBytes

Ein Service von Reinhard Neidl - Webprogrammierung.

The MongoGridFSFile class

<<MongoGridfsFile::__construct

MongoGridFSFile::getFilename>>

MongoGridFSFile::getBytes

(PECL mongo >=0.9.0)

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

Beschreibung

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!

Parameter-Liste

Diese Funktion hat keine Parameter.

Rückgabewerte

Returns a string of the bytes in the file.

Beispiele

Beispiel #1 MongoGridFSFile::getBytes() example

<?php

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

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

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

Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)