summaryrefslogtreecommitdiff
path: root/php.ini-development
diff options
context:
space:
mode:
authorYasuo Ohgaki <yohgaki@php.net>2013-07-18 14:08:28 +0900
committerYasuo Ohgaki <yohgaki@php.net>2013-07-18 14:08:28 +0900
commit445dffa75a1ffdbcf03670781c48fa4f88ce2ce9 (patch)
treefd6cdf6275118764e6363f328a77050cd7d84ff6 /php.ini-development
parentb9e3f737d95ba1d6e8e3e3ec4af6d5624dc50234 (diff)
downloadphp-git-445dffa75a1ffdbcf03670781c48fa4f88ce2ce9.tar.gz
Improve php.ini-* documentation
Diffstat (limited to 'php.ini-development')
-rw-r--r--php.ini-development2
1 files changed, 1 insertions, 1 deletions
diff --git a/php.ini-development b/php.ini-development
index aee8b4837a..28eb9ed545 100644
--- a/php.ini-development
+++ b/php.ini-development
@@ -1474,7 +1474,7 @@ session.gc_maxlifetime = 1440
; collection through a shell script, cron entry, or some other method.
; For example, the following script would is the equivalent of
; setting session.gc_maxlifetime to 1440 (1440 seconds = 24 minutes):
-; find /path/to/sessions -cmin +24 | xargs rm
+; find /path/to/sessions -cmin +24 -type f | xargs rm
; PHP 4.2 and less have an undocumented feature/bug that allows you to
; to initialize a session variable in the global scope.