Edit report at https://bugs.php.net/bug.php?id=60179&edit=1
ID: 60179 User updated by: dbetz at df dot eu Reported by: dbetz at df dot eu Summary: wrong output with php_flag boolean -Status: Feedback +Status: Assigned Type: Bug Package: FPM related Operating System: Gentoo Linux PHP Version: 5.3.8 Assigned To: fat Block user comment: N Private report: N New Comment: Hello, sorry, the problem still exists. session.auto_start is : Off Some code here ..... With cli: session.auto_start is : 0 Previous Comments: ------------------------------------------------------------------------ [2011-10-31 13:02:09] f...@php.net Can you please test the patch attached ? If you can test it quickly I can integrate it before 5.3.9 is going RC1. thx ++ fat ------------------------------------------------------------------------ [2011-10-31 13:00:41] f...@php.net The following patch has been added/updated: Patch Name: fpm-bug60179.patch Revision: 1320066041 URL: https://bugs.php.net/patch-display.php?bug=60179&patch=fpm-bug60179.patch&revision=1320066041 ------------------------------------------------------------------------ [2011-10-31 08:43:30] dbetz at df dot eu Description: ------------ Hello, when setting php_flag to Off or false, then PHP FPM sets it to the string "Off" rather than 0 or NULL. In fpm.conf php_flag["session.auto_start"] = Off or php_flag["session.auto_start"] = false It seems that the failure is on all boolean flags. Test script: --------------- <? echo "session.auto_start is : " . ini_get('session.auto_start') . "\n"; if (ini_get('session.auto_start')) { echo "Some code here .....\n"; } ?> Expected result: ---------------- session.auto_start is : 0 Actual result: -------------- session.auto_start is : Off ------------------------------------------------------------------------ -- Edit this bug report at https://bugs.php.net/bug.php?id=60179&edit=1