[PHP-DOC] cvs: phpdoc /en/reference/mysqli constants.xml /en/reference/mysqli/functions mysqli-bind-param.xml

2004-02-11 Thread Georg Richter
georg   Wed Feb 11 03:10:47 2004 EDT

  Modified files:  
/phpdoc/en/reference/mysqli constants.xml 
/phpdoc/en/reference/mysqli/functions   mysqli-bind-param.xml 
  Log:
  changed description for mysqli_bind_param
  removed constants
  
  
http://cvs.php.net/diff.php/phpdoc/en/reference/mysqli/constants.xml?r1=1.3r2=1.4ty=u
Index: phpdoc/en/reference/mysqli/constants.xml
diff -u phpdoc/en/reference/mysqli/constants.xml:1.3 
phpdoc/en/reference/mysqli/constants.xml:1.4
--- phpdoc/en/reference/mysqli/constants.xml:1.3Wed Jan 28 18:19:38 2004
+++ phpdoc/en/reference/mysqli/constants.xmlWed Feb 11 03:10:45 2004
@@ -425,34 +425,6 @@
  /row
  row
   entry
-   constant id='constantmysqli-bind-string'MYSQLI_BIND_STRING/constant
-   (link linkend='language.types.integer'integer/link)
-  /entry
- entryBind variable has type literalSTRING/literal/entry
- /row
- row
-  entry
-   constant id='constantmysqli-bind-int'MYSQLI_BIND_INT/constant
-   (link linkend='language.types.integer'integer/link)
-  /entry
- entryBind variable has type literalINT/literal/entry
- /row
- row
-  entry
-   constant id='constantmysqli-bind-double'MYSQLI_BIND_DOUBLE/constant
-   (link linkend='language.types.integer'integer/link)
-  /entry
- entryBind variable has type literalDOUBLE/literal/entry
- /row
- row
-  entry
-   constant id='constantmysqli-bind-send-data'MYSQLI_BIND_SEND_DATA/constant
-   (link linkend='language.types.integer'integer/link)
-  /entry
- entrySending bind variable in chunks/entry
- /row
- row
-  entry
constant id='constantmysqli-need-data'MYSQLI_NEED_DATA/constant
(link linkend='language.types.integer'integer/link)
   /entry
http://cvs.php.net/diff.php/phpdoc/en/reference/mysqli/functions/mysqli-bind-param.xml?r1=1.4r2=1.5ty=u
Index: phpdoc/en/reference/mysqli/functions/mysqli-bind-param.xml
diff -u phpdoc/en/reference/mysqli/functions/mysqli-bind-param.xml:1.4 
phpdoc/en/reference/mysqli/functions/mysqli-bind-param.xml:1.5
--- phpdoc/en/reference/mysqli/functions/mysqli-bind-param.xml:1.4  Wed Jan 28 
18:18:42 2004
+++ phpdoc/en/reference/mysqli/functions/mysqli-bind-param.xml  Wed Feb 11 03:10:47 
2004
@@ -1,5 +1,5 @@
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.4 $ --
+!-- $Revision: 1.5 $ --
   refentry id=function.mysqli-bind-param
refnamediv
 refnamemysqli_bind_param/refname
@@ -12,7 +12,7 @@
 methodsynopsis
  typebool/typemethodnamemysqli_bind_param/methodname
  methodparamtypeobject/typeparameterstmt/parameter/methodparam
- methodparamtypearray/typeparametertypes/parameter/methodparam
+ methodparamtypestring/typeparametertypes/parameter/methodparam
  methodparamtypemixed/typeparametervar1/parameter/methodparam
  methodparam choice=opttypemixed/typeparametervar2, 
.../parameter/methodparam
 /methodsynopsis
@@ -31,19 +31,48 @@
  functionmysql_bind_param/function is used to bind variables for the
  parameter markers in the SQL statement that was passed to
  functionmysql_prepare/function. 
- The array parametertypes/parameter specifies the types for the
- diffrent bind variables. Valid array values are MYSQLI_BIND_INT, 
MYSQLI_BIND_DOUBLE,
- MYSQLI_BIND_STRING and MYSQLI_SEND_DATA.
+ The string parametertypes/parameter contains one or more characters which 
specify
+ the types for the corresponding bind variables
+ table
+  titleType specification chars/title
+  tgroup cols='2'
+   thead
+row
+ entryCharacter/entry
+ entryDescription/entry
+/row
+   /thead
+   tbody
+row
+ entryi/entry
+ entrycorresponding variable has type integer/entry
+/row
+row
+ entryd/entry
+ entrycorresponding variable has type double/entry
+/row
+row
+ entrys/entry
+ entrycorresponding variable has type string/entry
+/row
+row
+ entryb/entry
+ entrycorresponding variable is a blob and will be send in packages/entry
+/row
+   /tbody
+  /tgroup
+ /table
 /para
 note
   para
If data size of a variable exceeds max. allowed package size
-   (max_allowed_package), you have to specify MYSQLI_SEND_DATA and use
+   (max_allowed_package), you have to specify literalb/literal in 
+   parametertypes/parameter and use
functionmysqli_send_long_data/function to send the data in packages.
   /para
   para
-   The number of variables and array values must match the number of
-   parameters in the statement.
+   The number of variables and length of
+   string parametertypes/parameter must match the parameters in the statement.
  /para
 /note
/refsect1
@@ -70,8 +99,7 @@
 
 /* prepare statement and bind 

[PHP-DOC] possible Bug in manual for preg_grep

2004-02-11 Thread Voytsekhovskyy Alexander
http://ua.php.net/preg_grep


Additional parameter flags  is available since PHP 4.3.0.

But value PREG_GREP_INVERT for this  parameter  is available since PHP 4.2.0.


Little inaccuracy :)


-- 
 ,
 Voytsekhovskyy  mailto:[EMAIL PROTECTED]


[PHP-DOC] Re: cvs: php-src /ext/standard dl.c

2004-02-11 Thread Mehdi Achour
Hi Zeev !

Should this be added to the codumentation too ?

didou

zeev		Wed Feb 11 06:46:21 2004 EDT

  Modified files:  
/php-src/ext/standard	dl.c 
  Log:
  Finally add a notice to hint people that using dl() is a bad idea...
  
  
http://cvs.php.net/diff.php/php-src/ext/standard/dl.c?r1=1.86r2=1.87ty=u
Index: php-src/ext/standard/dl.c
diff -u php-src/ext/standard/dl.c:1.86 php-src/ext/standard/dl.c:1.87
--- php-src/ext/standard/dl.c:1.86	Thu Jan  8 03:17:31 2004
+++ php-src/ext/standard/dl.c	Wed Feb 11 06:46:20 2004
@@ -18,7 +18,7 @@
+--+
 */
 
-/* $Id: dl.c,v 1.86 2004/01/08 08:17:31 andi Exp $ */
+/* $Id: dl.c,v 1.87 2004/02/11 11:46:20 zeev Exp $ */
 
 #include php.h
 #include dl.h
@@ -81,6 +81,7 @@
 	} else if (PG(safe_mode)) {
 		php_error_docref(NULL TSRMLS_CC, E_WARNING, Dynamically loaded extensions aren't allowed when running in Safe Mode);
 	} else {
+		zend_error(E_STRICT, dl() is deprecated - use extension= in your php.ini);
 		php_dl(*file, MODULE_TEMPORARY, return_value TSRMLS_CC);
 		EG(full_tables_cleanup) = 1;
 	}


[PHP-DOC] Urgent Help needed :set_time_limit ()

2004-02-11 Thread Angelina
hello, plz someone help me out for this script

set_time_limit ();

I have problem with :

Fatal error: Maximum execution time of 30 seconds exceeded in
D:\hshome\angelina\ud-clan.net\forum\posting.php on line 23

I can't fix php.ini  coz my hosting company not allow, and they don't adjust
php.ini setting for it.

so, i only have way to use set_time_limit () : to fix  max execution error
on my forum
www.ud-clan.net/forum

my members need to post much bigger files,
so max execution time 30 sec is too short.
it must be at least 3 mins.

my hosting company asked me to fix

/forum/templates/subsilber/subsilber.cfg

add set_time_limit (); to  next of ?php ..

I did it as follow. but still not working,

I asked my members to test.. but when they posting files, it still showing
max execution error.  

thk you ^^


[PHP-DOC] Re: Urgent Help needed :set_time_limit ()

2004-02-11 Thread Mehdi Achour
Please ask support questions at [EMAIL PROTECTED]

didou

Angelina wrote:
hello, plz someone help me out for this script

set_time_limit ();

I have problem with :

Fatal error: Maximum execution time of 30 seconds exceeded in
D:\hshome\angelina\ud-clan.net\forum\posting.php on line 23
I can't fix php.ini  coz my hosting company not allow, and they don't adjust
php.ini setting for it.
so, i only have way to use set_time_limit () : to fix  max execution error
on my forum
www.ud-clan.net/forum
my members need to post much bigger files,
so max execution time 30 sec is too short.
it must be at least 3 mins.
my hosting company asked me to fix

/forum/templates/subsilber/subsilber.cfg

add set_time_limit (); to  next of ?php ..

I did it as follow. but still not working,

I asked my members to test.. but when they posting files, it still showing
max execution error.  
thk you ^^


Re: [PHP-DOC] Urgent Help needed :set_time_limit ()

2004-02-11 Thread David Costa
You need to ask the general mailing list  at [EMAIL PROTECTED]

or check  out http://www.php.net/support.php

On Feb 11, 2004, at 4:50 AM, Angelina wrote:

hello, plz someone help me out for this script

set_time_limit ();

I have problem with :

Fatal error: Maximum execution time of 30 seconds exceeded in
D:\hshome\angelina\ud-clan.net\forum\posting.php on line 23
I can't fix php.ini  coz my hosting company not allow, and they don't 
adjust
php.ini setting for it.

so, i only have way to use set_time_limit () : to fix  max execution 
error
on my forum
www.ud-clan.net/forum

my members need to post much bigger files,
so max execution time 30 sec is too short.
it must be at least 3 mins.
my hosting company asked me to fix

/forum/templates/subsilber/subsilber.cfg

add set_time_limit (); to  next of ?php ..

I did it as follow. but still not working,

I asked my members to test.. but when they posting files, it still 
showing
max execution error.  

thk you ^^


[PHP-DOC] cvs: phpdoc /en/reference/array/functions array-walk.xml

2004-02-11 Thread Derick Rethans
derick  Wed Feb 11 08:18:02 2004 EDT

  Modified files:  
/phpdoc/en/reference/array/functionsarray-walk.xml 
  Log:
  - Added another see also
  
  
http://cvs.php.net/diff.php/phpdoc/en/reference/array/functions/array-walk.xml?r1=1.14r2=1.15ty=u
Index: phpdoc/en/reference/array/functions/array-walk.xml
diff -u phpdoc/en/reference/array/functions/array-walk.xml:1.14 
phpdoc/en/reference/array/functions/array-walk.xml:1.15
--- phpdoc/en/reference/array/functions/array-walk.xml:1.14 Thu Jan 15 07:42:01 
2004
+++ phpdoc/en/reference/array/functions/array-walk.xml  Wed Feb 11 08:18:02 2004
@@ -1,5 +1,5 @@
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.14 $ --
+!-- $Revision: 1.15 $ --
 !-- splitted from ./en/functions/array.xml, last change in rev 1.2 --
   refentry id=function.array-walk
refnamediv
@@ -117,7 +117,7 @@
  /example
 /para
 simpara
- See also functionlist/function, 
+ See also functioncreate_function/function, functionlist/function, 
  link linkend=control-structures.foreachforeach/link, 
  functioneach/function, and functioncall_user_func_array/function.
 /simpara


[PHP-DOC] Missing sentence?

2004-02-11 Thread Kai
http://www.php.net/manual/en/language.expressions.php :
In the beginning of the chapter we said that we'll be describing the
various statement types
What it about? Can you show me where it was said?


[PHP-DOC] #27210 [Asn]: SERVER_BIND in stream_socket_server manual page on the wrong place

2004-02-11 Thread nlopess
 ID:  27210
 Updated by:  [EMAIL PROTECTED]
 Reported By: glox at glox dot be
 Status:  Assigned
 Bug Type:Documentation problem
 PHP Version: 5.0.0-CVS-HEAD
 Assigned To: nlopess
 New Comment:

Yes, I've noted that glox is right.

The problem is that the documentation isn't very explicit in how to use
the flags.
I will take a look into this and then I close the bug. For now I'll
just fix the example.


Previous Comments:


[2004-02-11 00:23:11] [EMAIL PROTECTED]

Sorry, I was asleep at the wheel on that one.  You're absolutely right.
 Good catch.

Not sure why nlopess took assignment rather than simply *doing* the
fix, but if he's listening... Don't worry about verifying it.  glox is
right, swap that param down to the other example!





[2004-02-10 11:32:33] glox at glox dot be

Description:

The STREAM_SERVER_BIND flag in the stream_socket_server() manual page
is with the tcp socket example. However the udp socket requires this
flag. This flag was added in the manual page due to my previous bug
report, but I think it's added in the wrong example. The
STREAM_SERVER_BIND flag should be moved to the second example.






-- 
Edit this bug report at http://bugs.php.net/?id=27210edit=1


[PHP-DOC] cvs: phpdoc /en/reference/stream/functions stream-socket-server.xml

2004-02-11 Thread Nuno Lopes
nlopess Wed Feb 11 11:30:31 2004 EDT

  Modified files:  
/phpdoc/en/reference/stream/functions   stream-socket-server.xml 
  Log:
  fixing examples: bug #27210
  
http://cvs.php.net/diff.php/phpdoc/en/reference/stream/functions/stream-socket-server.xml?r1=1.11r2=1.12ty=u
Index: phpdoc/en/reference/stream/functions/stream-socket-server.xml
diff -u phpdoc/en/reference/stream/functions/stream-socket-server.xml:1.11 
phpdoc/en/reference/stream/functions/stream-socket-server.xml:1.12
--- phpdoc/en/reference/stream/functions/stream-socket-server.xml:1.11  Wed Jan 28 
19:35:30 2004
+++ phpdoc/en/reference/stream/functions/stream-socket-server.xml   Wed Feb 11 
11:30:31 2004
@@ -1,5 +1,5 @@
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.11 $ --
+!-- $Revision: 1.12 $ --
   refentry id=function.stream-socket-server
refnamediv
 refnamestream_socket_server/refname
@@ -64,7 +64,7 @@
   programlisting role=php
 ![CDATA[
 ?php
-$socket = stream_socket_server(tcp://0.0.0.0:8000, $errno, $errstr, 
STREAM_SERVER_BIND);
+$socket = stream_socket_server(tcp://0.0.0.0:8000, $errno, $errstr);
 if (!$socket) {
   echo $errstr ($errno)br /\n;
 } else {
@@ -93,7 +93,7 @@
  programlisting role=php
 ![CDATA[
 ?php
-$socket = stream_socket_server(udp://0.0.0.0:13, $errno, $errstr);
+$socket = stream_socket_server(udp://0.0.0.0:13, $errno, $errstr, 
STREAM_SERVER_BIND);
 if (!$socket) {
 echo ERROR: $errno - $errstrbr /\n;
 } else {


[PHP-DOC] cvs: phpdoc /en/reference/pcre/functions preg-grep.xml

2004-02-11 Thread Nuno Lopes
nlopess Wed Feb 11 11:43:40 2004 EDT

  Modified files:  
/phpdoc/en/reference/pcre/functions preg-grep.xml 
  Log:
  remove bogus note. reported by a user in the ML
  
http://cvs.php.net/diff.php/phpdoc/en/reference/pcre/functions/preg-grep.xml?r1=1.5r2=1.6ty=u
Index: phpdoc/en/reference/pcre/functions/preg-grep.xml
diff -u phpdoc/en/reference/pcre/functions/preg-grep.xml:1.5 
phpdoc/en/reference/pcre/functions/preg-grep.xml:1.6
--- phpdoc/en/reference/pcre/functions/preg-grep.xml:1.5Tue Jan  6 04:14:39 
2004
+++ phpdoc/en/reference/pcre/functions/preg-grep.xmlWed Feb 11 11:43:40 2004
@@ -1,5 +1,5 @@
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.5 $ --
+!-- $Revision: 1.6 $ --
 !-- splitted from ./en/functions/pcre.xml, last change in rev 1.2 --
   refentry id=function.preg-grep
refnamediv
@@ -33,13 +33,11 @@
  If this flag is passed, functionpreg_grep/function returns the
  elements of the input array that do emphasisnot/emphasis match
  the given parameterpattern/parameter.
- This flag is available since literalPHP/literal 4.2.0.
+ This flag is available since PHP 4.2.0.
 /simpara
/listitem
   /varlistentry
  /variablelist
- The parameterflags/parameter parameter is available since
- literalPHP/literal 4.3.0.
 /para
 
 para


Re: [PHP-DOC] possible Bug in manual for preg_grep

2004-02-11 Thread Nuno Lopes
Thanks for your report.
Its now fixed in CVS. (it takes some time in order to appear in the mirrors)

Nuno


 http://ua.php.net/preg_grep


 Additional parameter flags  is available since PHP 4.3.0.

 But value PREG_GREP_INVERT for this  parameter  is available since PHP
4.2.0.


 Little inaccuracy :)


 -- 
  ,
  Voytsekhovskyy  mailto:[EMAIL PROTECTED]


Re: [PHP-DOC] possible Bug in manual for preg_grep

2004-02-11 Thread Mehdi Achour
Hi Alexander !

Can you please fill a bug report at http://bugs.php.net/ next time ?

thanks

didou

Nuno Lopes wrote:
Thanks for your report.
Its now fixed in CVS. (it takes some time in order to appear in the mirrors)
Nuno



http://ua.php.net/preg_grep

Additional parameter flags  is available since PHP 4.3.0.

But value PREG_GREP_INVERT for this  parameter  is available since PHP
4.2.0.

Little inaccuracy :)

--
 ,
Voytsekhovskyy  mailto:[EMAIL PROTECTED]


[PHP-DOC] birthday class

2004-02-11 Thread Cornelia Boenigk
?php
class benutzer
{
var $name;
var $gebjahr;

function setName ($name)
{
$this-name = $name;
}

function getName ()
{
return $this-name;
}

function setgebjahr ($gebjahr)
{
$this -gebjahr = $gebjahr;
}

function getAge ()
{
return date (Y) - $this-gebjahr;
}
}

$user = new benutzer;
$user-setName (Egon);
$user-setgebjahr(1954);

if (date('d.m.Y') == 12.02.2004) {
echo Hallo  . $user-getName() . brHappy BirthdaybrBest
wishes for Your  . $user-getAge() . . birthdaybr;
}
?

Regards
Conni


Re: [PHP-DOC] birthday class

2004-02-11 Thread Gabor Hojtsy
?php
class benutzer
{
var $name;
var $gebjahr;
function setName ($name)
{
$this-name = $name;
}
function getName ()
{
return $this-name;
}
function setgebjahr ($gebjahr)
{
$this -gebjahr = $gebjahr;
}
function getAge ()
{
return date (Y) - $this-gebjahr;
}
}
$user = new benutzer;
$user-setName (Egon);
$user-setgebjahr(1954);
if (date('d.m.Y') == 12.02.2004) {
echo Hallo  . $user-getName() . brHappy BirthdaybrBest
wishes for Your  . $user-getAge() . . birthdaybr;
}
?
What if we extend the class a bit to store the exact birth date, so it 
would be able to trigger the echo on Egons birthdays? :) I would also 
like to join and wish a happy birthday to Egon!

Goba


RE: [PHP-DOC] birthday class

2004-02-11 Thread Steph
Egon and Zeev are twins?

wild..

 -Original Message-
 From: Gabor Hojtsy [mailto:[EMAIL PROTECTED]
 Sent: 11 February 2004 19:09
 To: Cornelia Boenigk
 Cc: PHP DOC
 Subject: Re: [PHP-DOC] birthday class
 
 
  ?php
  class benutzer
  {
  var $name;
  var $gebjahr;
  
  function setName ($name)
  {
  $this-name = $name;
  }
  
  function getName ()
  {
  return $this-name;
  }
  
  function setgebjahr ($gebjahr)
  {
  $this -gebjahr = $gebjahr;
  }
  
  function getAge ()
  {
  return date (Y) - $this-gebjahr;
  }
  }
  
  $user = new benutzer;
  $user-setName (Egon);
  $user-setgebjahr(1954);
  
  if (date('d.m.Y') == 12.02.2004) {
  echo Hallo  . $user-getName() . brHappy BirthdaybrBest
  wishes for Your  . $user-getAge() . . birthdaybr;
  }
  ?
 
 What if we extend the class a bit to store the exact birth date, so it 
 would be able to trigger the echo on Egons birthdays? :) I would also 
 like to join and wish a happy birthday to Egon!
 
 Goba


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

2004-02-11 Thread Nuno Lopes
nlopess Wed Feb 11 14:00:33 2004 EDT

  Modified files:  
/phpdoc/en/appendices   migration5.xml 
/phpdoc/en/reference/sessionini.xml 
  Log:
  fixing derick's bug/note
  added new hash_functions and bits_per_character
  PHP 5 only
  
http://cvs.php.net/diff.php/phpdoc/en/appendices/migration5.xml?r1=1.6r2=1.7ty=u
Index: phpdoc/en/appendices/migration5.xml
diff -u phpdoc/en/appendices/migration5.xml:1.6 phpdoc/en/appendices/migration5.xml:1.7
--- phpdoc/en/appendices/migration5.xml:1.6 Tue Feb 10 13:39:07 2004
+++ phpdoc/en/appendices/migration5.xml Wed Feb 11 14:00:31 2004
@@ -1,5 +1,5 @@
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.6 $ --
+!-- $Revision: 1.7 $ --
  appendix id=migration5
   titleMigrating from PHP 4 to PHP 5/title
 
@@ -408,16 +408,18 @@
  functionmail/function, even in safe mode
/simpara/listitem
 listitemsimpara
-  link linkend=ini.register-long-arraysregister_long_arrays/link -
-  allow/disallow PHP to register the deprecated long $HTTP_*_VARS
+ link linkend=ini.register-long-arraysregister_long_arrays/link -
+ allow/disallow PHP to register the deprecated long $HTTP_*_VARS
/simpara/listitem
 listitemsimpara
- session.hash_function - select a hash function (MD5 or SHA-1)
+  link linkend=ini.session.hash-functionsession.hash_function/link -
+  select a hash function (MD5 or SHA-1)
/simpara/listitem
 listitemsimpara
- session.hash_bits_per_character - define how many bits are stored in
- each character when converting the binary hash data to something
- readable (from 4 to 6)
+  link
+   
linkend=ini.session.hash-bits-per-charactersession.hash_bits_per_character/link
+  - define how many bits are stored in each character when converting the
+  binary hash data to something readable (from 4 to 6)
/simpara/listitem
/itemizedlist
   /section
http://cvs.php.net/diff.php/phpdoc/en/reference/session/ini.xml?r1=1.20r2=1.21ty=u
Index: phpdoc/en/reference/session/ini.xml
diff -u phpdoc/en/reference/session/ini.xml:1.20 
phpdoc/en/reference/session/ini.xml:1.21
--- phpdoc/en/reference/session/ini.xml:1.20Mon Feb  9 12:21:30 2004
+++ phpdoc/en/reference/session/ini.xml Wed Feb 11 14:00:33 2004
@@ -1,5 +1,5 @@
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.20 $ --
+!-- $Revision: 1.21 $ --
 section id=session.configuration
  reftitle.runtime;
  extension.runtime;
@@ -126,6 +126,16 @@
  entryPHP_INI_ALL/entry
 /row
 row
+ entrysession.hash_function/entry
+ entry0/entry
+ entryPHP_INI_ALL/entry
+/row
+row
+ entrysession.hash_bits_per_character/entry
+ entry4/entry
+ entryPHP_INI_ALL/entry
+/row
+row
  entryurl_rewriter.tags/entry
  entrya=href,area=href,frame=src,input=src,form=fakeentry/entry
  entryPHP_INI_ALL/entry
@@ -563,6 +573,45 @@
/listitem
   /varlistentry
 
+  varlistentry id=ini.session.hash-function
+   term
+parametersession.hash_function/parameter
+typeinteger/type
+   /term
+   listitem
+simpara
+ literalsession.hash_function/literal allows you to specify the hash
+ algorithm used to generate the session IDs. '0' means MD5 (128 bits) and
+ '1' means SHA-1 (160 bits).
+/simpara
+note
+ para
+  This was introduced in PHP 5.
+ /para
+/note
+   /listitem
+  /varlistentry
+
+  varlistentry id=ini.session.hash-bits-per-character
+   term
+parametersession.hash_bits_per_character/parameter
+typeinteger/type
+   /term
+   listitem
+simpara
+ literalsession.hash_bits_per_character/literal allows you to define
+ how many bits are stored in each character when converting the binary
+ hash data to something readable. The possible values are '4' (0-9, a-f),
+ '5' (0-9, a-v), and '6' (0-9, a-z, A-Z, -, ,).
+/simpara
+note
+ para
+  This was introduced in PHP 5.
+ /para
+/note
+   /listitem
+  /varlistentry
+
   varlistentry id=ini.url-rewriter.tags
term
 parameterurl_rewriter.tags/parameter


[PHP-DOC] #27223 [NEW]: Some omissions in Expressions chapter

2004-02-11 Thread ihave at no dot mail
From: ihave at no dot mail
Operating system: 
PHP version:  Irrelevant
PHP Bug Type: Documentation problem
Bug description:  Some omissions in Expressions chapter

Description:

I think it will be nice if in
http://www.php.net/manual/en/language.expressions.php instead of Assuming
you're familiar with the concept of functions (if you're not, take a look
at the chapter about functions),  will be the same and link to the
functions chapter.

Also in this document:
In the beginning of the chapter we said that we'll be describing the
various statement types
It seems that this sentence (we'll be describing the various statement
types) was deleted from the beginning of this chapter. Am I wrong?


-- 
Edit bug report at http://bugs.php.net/?id=27223edit=1
-- 
Try a CVS snapshot (php4):  http://bugs.php.net/fix.php?id=27223r=trysnapshot4
Try a CVS snapshot (php5):  http://bugs.php.net/fix.php?id=27223r=trysnapshot5
Fixed in CVS:   http://bugs.php.net/fix.php?id=27223r=fixedcvs
Fixed in release:   http://bugs.php.net/fix.php?id=27223r=alreadyfixed
Need backtrace: http://bugs.php.net/fix.php?id=27223r=needtrace
Need Reproduce Script:  http://bugs.php.net/fix.php?id=27223r=needscript
Try newer version:  http://bugs.php.net/fix.php?id=27223r=oldversion
Not developer issue:http://bugs.php.net/fix.php?id=27223r=support
Expected behavior:  http://bugs.php.net/fix.php?id=27223r=notwrong
Not enough info:http://bugs.php.net/fix.php?id=27223r=notenoughinfo
Submitted twice:http://bugs.php.net/fix.php?id=27223r=submittedtwice
register_globals:   http://bugs.php.net/fix.php?id=27223r=globals
PHP 3 support discontinued: http://bugs.php.net/fix.php?id=27223r=php3
Daylight Savings:   http://bugs.php.net/fix.php?id=27223r=dst
IIS Stability:  http://bugs.php.net/fix.php?id=27223r=isapi
Install GNU Sed:http://bugs.php.net/fix.php?id=27223r=gnused
Floating point limitations: http://bugs.php.net/fix.php?id=27223r=float


[PHP-DOC] #27223 [Opn-Csd]: Some omissions in Expressions chapter

2004-02-11 Thread poz
 ID:  27223
 Updated by:  [EMAIL PROTECTED]
 Reported By: ihave at no dot mail
-Status:  Open
+Status:  Closed
 Bug Type:Documentation problem
 PHP Version: Irrelevant
 New Comment:

This bug has been fixed in the documentation's XML sources. Since the
online and downloadable versions of the documentation need some time
to get updated, we would like to ask you to be a bit patient.

Thank you for the report, and for helping us make our documentation
better.


Previous Comments:


[2004-02-11 15:42:47] ihave at no dot mail

Description:

I think it will be nice if in
http://www.php.net/manual/en/language.expressions.php instead of
Assuming you're familiar with the concept of functions (if you're not,
take a look at the chapter about functions),  will be the same and
link to the functions chapter.

Also in this document:
In the beginning of the chapter we said that we'll be describing the
various statement types
It seems that this sentence (we'll be describing the various statement
types) was deleted from the beginning of this chapter. Am I wrong?






-- 
Edit this bug report at http://bugs.php.net/?id=27223edit=1


Re: [PHP-DOC] #27223 [Opn-Csd]: Some omissions in Expressions chapter

2004-02-11 Thread Vincent Briet
[EMAIL PROTECTED] wrote:

 ID:  27223
 Updated by:  [EMAIL PROTECTED]
 Reported By: ihave at no dot mail
-Status:  Open
+Status:  Closed
 Bug Type:Documentation problem
 PHP Version: Irrelevant
 New Comment:
It's not closed, but i don't know how to change to open status, sorry :(

--
Vincent


[PHP-DOC] #27223 [Csd-Opn]: Some omissions in Expressions chapter

2004-02-11 Thread poz
 ID:  27223
 Updated by:  [EMAIL PROTECTED]
 Reported By: ihave at no dot mail
-Status:  Closed
+Status:  Open
 Bug Type:Documentation problem
 PHP Version: Irrelevant


Previous Comments:


[2004-02-11 16:08:15] [EMAIL PROTECTED]

This bug has been fixed in the documentation's XML sources. Since the
online and downloadable versions of the documentation need some time
to get updated, we would like to ask you to be a bit patient.

Thank you for the report, and for helping us make our documentation
better.



[2004-02-11 15:42:47] ihave at no dot mail

Description:

I think it will be nice if in
http://www.php.net/manual/en/language.expressions.php instead of
Assuming you're familiar with the concept of functions (if you're not,
take a look at the chapter about functions),  will be the same and
link to the functions chapter.

Also in this document:
In the beginning of the chapter we said that we'll be describing the
various statement types
It seems that this sentence (we'll be describing the various statement
types) was deleted from the beginning of this chapter. Am I wrong?






-- 
Edit this bug report at http://bugs.php.net/?id=27223edit=1


[PHP-DOC] #27223 [Opn]: Some omissions in Expressions chapter

2004-02-11 Thread nlopess
 ID:  27223
 Updated by:  [EMAIL PROTECTED]
 Reported By: ihave at no dot mail
 Status:  Open
 Bug Type:Documentation problem
 PHP Version: Irrelevant
 New Comment:

there was no changes here.


Previous Comments:


[2004-02-11 16:08:15] [EMAIL PROTECTED]

This bug has been fixed in the documentation's XML sources. Since the
online and downloadable versions of the documentation need some time
to get updated, we would like to ask you to be a bit patient.

Thank you for the report, and for helping us make our documentation
better.



[2004-02-11 15:42:47] ihave at no dot mail

Description:

I think it will be nice if in
http://www.php.net/manual/en/language.expressions.php instead of
Assuming you're familiar with the concept of functions (if you're not,
take a look at the chapter about functions),  will be the same and
link to the functions chapter.

Also in this document:
In the beginning of the chapter we said that we'll be describing the
various statement types
It seems that this sentence (we'll be describing the various statement
types) was deleted from the beginning of this chapter. Am I wrong?






-- 
Edit this bug report at http://bugs.php.net/?id=27223edit=1


[PHP-DOC] how to recover forgotten cvs pass

2004-02-11 Thread Enrique Garcia Briones
Title: how to recover forgotten cvs pass






Hi, 

A partner in the DOC-ES team has forgotten his cvs password, is there any way to recover forgotten passwords, if not it would be a nice feature to have?

Enrique





Re: [PHP-DOC] how to recover forgotten cvs pass

2004-02-11 Thread Derick Rethans
On Wed, 11 Feb 2004, Enrique Garcia Briones wrote:

 A partner in the DOC-ES team has forgotten his cvs password, is there
 any way to recover forgotten passwords, if not it would be a nice
 feature to have?

http://master.php.net/forgot.php

regards,
Derick


Re: [PHP-DOC] how to recover forgotten cvs pass

2004-02-11 Thread Nuno Lopes
how to recover forgotten cvs passhttp://master.php.net/forgot.php


- Original Message - 
From: Enrique Garcia Briones
To: 'PHP Lists'
Sent: Wednesday, February 11, 2004 10:27 PM
Subject: [PHP-DOC] how to recover forgotten cvs pass


Hi,
A partner in the DOC-ES team has forgotten his cvs password, is there any
way to recover forgotten passwords, if not it would be a nice feature to
have?
Enrique


[PHP-DOC] cvs: phpdoc /entities global.ent

2004-02-11 Thread Kenneth Schwartz
irchtml Thu Feb 12 02:04:55 2004 EDT

  Modified files:  
/phpdoc/entitiesglobal.ent 
  Log:
  Fixed bug #27218, link to MDAC changed
  
http://cvs.php.net/diff.php/phpdoc/entities/global.ent?r1=1.162r2=1.163ty=u
Index: phpdoc/entities/global.ent
diff -u phpdoc/entities/global.ent:1.162 phpdoc/entities/global.ent:1.163
--- phpdoc/entities/global.ent:1.162Mon Feb  9 12:39:46 2004
+++ phpdoc/entities/global.ent  Thu Feb 12 02:04:55 2004
@@ -1,6 +1,6 @@
 !-- -*- SGML -*-
 
- $Id: global.ent,v 1.162 2004/02/09 17:39:46 mg Exp $
+ $Id: global.ent,v 1.163 2004/02/12 07:04:55 irchtml Exp $
 
  Contains global macros for all the XML documents.
 
@@ -138,7 +138,7 @@
 !ENTITY url.mcrypt.windows http://ftp.emini.dk/pub/php/win32/mcrypt/;
 !ENTITY url.mcrypt.iv http://www.ciphersbyritter.com/GLOSSARY.HTM#IV;
 !ENTITY url.mcrypt.bcm 
http://fn2.freenet.edmonton.ab.ca/~jsavard/crypto/co0409.htm;
-!ENTITY url.mdac http://www.microsoft.com/data/;
+!ENTITY url.mdac http://msdn.microsoft.com/data/;
 !ENTITY url.mersenne http://www.math.keio.ac.jp/~matumoto/emt.html;
 !ENTITY url.mhash http://mhash.sourceforge.net/;
 !ENTITY url.ming http://ming.sourceforge.net/;