ReflectionExtension::isPersistent

(PHP 5 >= 5.4.0, PHP 7, PHP 8)

ReflectionExtension::isPersistentReturns whether this extension is persistent

Beschreibung

publicReflectionExtension::isPersistent(): bool

Check whether the extension is persistent.

An extension is persistent when it is loaded using php.ini. An extension is temporary, not persistent, when it is loaded with dl().

Parameter-Liste

Diese Funktion besitzt keine Parameter.

Rückgabewerte

Returns true for extensions loaded by extension, false otherwise.

Siehe auch

To Top