From: <php...@li...> - 2010-10-17 20:52:29
|
Hello! <quote> [jostb@localhost ~]$ php -n -d 'session.save_path='\''/tmp'\''' -i |fgrep session.save_path session.save_path => /tmp => /tmp </quote> According to http://www.php.net/manual/en/configuration.file.php session.save_path="something"; is okay, but session.save_path="something"; is not. However: [Customization] custom.mode = "development" session.save_path="${custom.mode}"; php 5.3: session.save_path => development => development php 5.2: session.save_path => ${custom.mode} => ${custom.mode} So I'd say that using ' quotes is correct. Peter |