public function PhpConfigDataCollector::hasZendOpcache in Devel 4.x
Same name and namespace in other branches
- 8.3 webprofiler/src/DataCollector/PhpConfigDataCollector.php \Drupal\webprofiler\DataCollector\PhpConfigDataCollector::hasZendOpcache()
- 8 webprofiler/src/DataCollector/PhpConfigDataCollector.php \Drupal\webprofiler\DataCollector\PhpConfigDataCollector::hasZendOpcache()
- 8.2 webprofiler/src/DataCollector/PhpConfigDataCollector.php \Drupal\webprofiler\DataCollector\PhpConfigDataCollector::hasZendOpcache()
Returns true if Zend OPcache is enabled.
Return value
Boolean true if Zend OPcache is enabled, false otherwise
1 call to PhpConfigDataCollector::hasZendOpcache()
- PhpConfigDataCollector::hasAccelerator in webprofiler/
src/ DataCollector/ PhpConfigDataCollector.php - Returns true if any accelerator is enabled.
File
- webprofiler/
src/ DataCollector/ PhpConfigDataCollector.php, line 95
Class
- PhpConfigDataCollector
- Provides a data collector to collect all kind of php information.
Namespace
Drupal\webprofiler\DataCollectorCode
public function hasZendOpcache() {
return $this->data['zend_opcache_enabled'];
}