[PHP-DOC] cvs: phpdoc /en/features http-auth.xml

2006-08-16 Thread TAKAGI Masahiro
takagi  Wed Aug 16 04:07:22 2006 UTC

  Modified files:  
/phpdoc/en/features http-auth.xml 
  Log:
  Examples indentation.
  
  
http://cvs.php.net/viewvc.cgi/phpdoc/en/features/http-auth.xml?r1=1.46&r2=1.47&diff_format=u
Index: phpdoc/en/features/http-auth.xml
diff -u phpdoc/en/features/http-auth.xml:1.46 
phpdoc/en/features/http-auth.xml:1.47
--- phpdoc/en/features/http-auth.xml:1.46   Tue Aug 15 16:17:01 2006
+++ phpdoc/en/features/http-auth.xmlWed Aug 16 04:07:22 2006
@@ -1,5 +1,5 @@
 
-
+
  
   HTTP authentication with PHP
 
@@ -197,15 +197,14 @@
 if (!isset($_SERVER['PHP_AUTH_USER']) ||
 ($_POST['SeenBefore'] == 1 && $_POST['OldAuth'] == 
$_SERVER['PHP_AUTH_USER'])) {
 authenticate();
-}
-else {
-   echo "Welcome: {$_SERVER['PHP_AUTH_USER']}";
-   echo "Old: {$_REQUEST['OldAuth']}";
-   echo "\n";
-   echo "\n";
-   echo "\n";
-   echo "\n";
-   echo "\n";
+} else {
+echo "Welcome: {$_SERVER['PHP_AUTH_USER']}";
+echo "Old: {$_REQUEST['OldAuth']}";
+echo "\n";
+echo "\n";
+echo "\n";
+echo "\n";
+echo "\n";
 }
 ?>
 ]]>


[PHP-DOC] #38477 [NEW]: Filesystem Functions::fgetcsv(): locale dependent limitation

2006-08-16 Thread jo at feuersee dot de
From: jo at feuersee dot de
Operating system: 
PHP version:  Irrelevant
PHP Bug Type: Documentation problem
Bug description:  Filesystem Functions::fgetcsv(): locale dependent limitation

Description:

See bug #38471 first (http://bugs.php.net/bug.php?id=38471)

As stated there, current PHP versions don't support fgetcsv() with
multibyte support in a useable way.

Considering the increasing use of UTF-8, IMO it should be clearly stated
in the documentation that support concerning multibyte encodings is not
yet avail and anyone using such encodings is way better off implementing
their own way of parsing CSV files than using fgetcsv().



-- 
Edit bug report at http://bugs.php.net/?id=38477&edit=1
-- 
Try a CVS snapshot (PHP 4.4): 
http://bugs.php.net/fix.php?id=38477&r=trysnapshot44
Try a CVS snapshot (PHP 5.2): 
http://bugs.php.net/fix.php?id=38477&r=trysnapshot52
Try a CVS snapshot (PHP 6.0): 
http://bugs.php.net/fix.php?id=38477&r=trysnapshot60
Fixed in CVS: http://bugs.php.net/fix.php?id=38477&r=fixedcvs
Fixed in release: 
http://bugs.php.net/fix.php?id=38477&r=alreadyfixed
Need backtrace:   http://bugs.php.net/fix.php?id=38477&r=needtrace
Need Reproduce Script:http://bugs.php.net/fix.php?id=38477&r=needscript
Try newer version:http://bugs.php.net/fix.php?id=38477&r=oldversion
Not developer issue:  http://bugs.php.net/fix.php?id=38477&r=support
Expected behavior:http://bugs.php.net/fix.php?id=38477&r=notwrong
Not enough info:  
http://bugs.php.net/fix.php?id=38477&r=notenoughinfo
Submitted twice:  
http://bugs.php.net/fix.php?id=38477&r=submittedtwice
register_globals: http://bugs.php.net/fix.php?id=38477&r=globals
PHP 3 support discontinued:   http://bugs.php.net/fix.php?id=38477&r=php3
Daylight Savings: http://bugs.php.net/fix.php?id=38477&r=dst
IIS Stability:http://bugs.php.net/fix.php?id=38477&r=isapi
Install GNU Sed:  http://bugs.php.net/fix.php?id=38477&r=gnused
Floating point limitations:   http://bugs.php.net/fix.php?id=38477&r=float
No Zend Extensions:   http://bugs.php.net/fix.php?id=38477&r=nozend
MySQL Configuration Error:http://bugs.php.net/fix.php?id=38477&r=mysqlcfg


[PHP-DOC] cvs: phpdoc /en/reference/session ini.xml

2006-08-16 Thread Jakub Vrana
vrana   Wed Aug 16 12:31:25 2006 UTC

  Modified files:  
/phpdoc/en/reference/sessionini.xml 
  Log:
  Further description of GC and cookie_lifetime
  
http://cvs.php.net/viewvc.cgi/phpdoc/en/reference/session/ini.xml?r1=1.41&r2=1.42&diff_format=u
Index: phpdoc/en/reference/session/ini.xml
diff -u phpdoc/en/reference/session/ini.xml:1.41 
phpdoc/en/reference/session/ini.xml:1.42
--- phpdoc/en/reference/session/ini.xml:1.41Fri Aug 11 16:21:54 2006
+++ phpdoc/en/reference/session/ini.xml Wed Aug 16 12:31:24 2006
@@ -1,5 +1,5 @@
 
-
+
 
  &reftitle.runtime;
  &extension.runtime;
@@ -338,7 +338,7 @@
 
  session.gc_maxlifetime specifies the number
  of seconds after which data will be seen as 'garbage' and
- cleaned up.
+ cleaned up. Garbage collection occurs during session start.
 
 
  
@@ -452,6 +452,9 @@
  0. See also
  session_get_cookie_params and
  session_set_cookie_params.
+ Since the cookie is returned by the browser, it is not prolonged to
+ suffice the lifetime. It must be sent manually by
+ setcookie.