COMPersistHelper::LoadFromStream

(PHP 5, PHP 7, PHP 8)

COMPersistHelper::LoadFromStreamLoad object from stream

Descripción

publicCOMPersistHelper::LoadFromStream(resource$stream): bool

Initializes an object from the stream where it was saved previously.

Parámetros

stream
The stream recurso from which to load the object.

Valores devueltos

Devuelve true en caso de éxito o false en caso de error.

Errores/Excepciones

A com_exception is thrown if the associated object does not implement the COM interface IPersistStream, or when calling the IPersistStream::Load() method failed.

To Top