Answers for "which are the recommended settings in the php configuration file php.ini for a testing environment"

PHP
0

content for php.ini created manually

// add the debug flag here
$debugMode = $_ENV['MFTF_DEBUG'] ?? false;
if (!(bool)$debugMode && extension_loaded('xdebug')) {
    xdebug_disable();
Posted by: Guest on February-08-2021

Code answers related to "which are the recommended settings in the php configuration file php.ini for a testing environment"

Browse Popular Code Answers by Language