Error message

You are browsing documentation for drupal 7.x, which is not supported anymore. Read the updated version of this page for drupal 11.x (the latest version).

function SystemAdminTestCase::testAdminPhpInfo

Test the phpinfo() page.

File

modules/system/system.test, line 2911

Class

SystemAdminTestCase
Tests administrative overview pages.

Code

function testAdminPhpInfo() {
 $this->drupalGet ('admin/reports/status/php');
 $this->assertText ('PHP');
 $this->assertNoText ('_COOKIE[');
 variable_set ('sa_core_2023_004_phpinfo_flags', INFO_ALL);
 $this->drupalGet ('admin/reports/status/php');
 $this->assertText ('PHP');
 $this->assertText ('_COOKIE[');
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.