Open In App

PHP | ReflectionExtension isPersistent() Function

Improve
Improve
Like Article
Like
Save
Share
Report

The ReflectionExtension::isPersistent() function is an inbuilt function in PHP which is used to return true if the specified extension is persistent, otherwise return false.

Syntax:

void ReflectionExtension::isPersistent( void )

Parameters: This function does not accept any parameter.

Return Value: This function returns true if the specified extension is persistent, otherwise return false.

Below programs illustrate the ReflectionExtension::isPersistent() function in PHP:

Program_1:




<?php
  
// Defining an extension
$A = 'DOM';
  
// Using ReflectionExtension() over the 
// specified extension
$extension = new ReflectionExtension($A);
  
// Calling the isPersistent() function
$B = $extension->isPersistent();
  
// Getting the value either true or false
var_dump($B);
?>


Output:

bool(true)

Program_2:




<?php
  
// Using ReflectionExtension() over 
// an extension xml
$extension = new ReflectionExtension('xml');
  
// Calling the isPersistent() function and
// Getting the value either true or false
var_dump($extension->isPersistent());
?>


Output:

bool(true)

Reference: https://www.php.net/manual/en/reflectionextension.ispersistent.php


Last Updated : 13 Dec, 2019
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads