[PHP-DOC] Notes Status, 16015 total

2006-10-15 Thread phpdoc
Following are the top 20 pages of the manual, sorted by the number
of user notes contributed. These sections could use a polish, those
notes represent 8.6% of the 16015 total user notes.

Notes  |  Page
---+-
   92  | http://php.net/manual/en/ref.session.php
   89  | http://php.net/manual/en/function.header.php
   80  | http://php.net/manual/en/function.strtotime.php
   80  | http://php.net/manual/en/reserved.variables.php
   78  | http://php.net/manual/en/ref.image.php
   77  | http://php.net/manual/en/function.preg-match.php
   71  | http://php.net/manual/en/function.fsockopen.php
   70  | http://php.net/manual/en/features.file-upload.php
   70  | http://php.net/manual/en/function.mssql-connect.php
   68  | http://php.net/manual/en/function.readdir.php
   66  | http://php.net/manual/en/function.array-search.php
   65  | http://php.net/manual/en/ref.com.php
   63  | http://php.net/manual/en/function.fgetcsv.php
   59  | http://php.net/manual/en/function.exec.php
   58  | http://php.net/manual/en/function.in-array.php
   58  | http://php.net/manual/en/ref.curl.php
   58  | http://php.net/manual/en/function.rand.php
   58  | http://php.net/manual/en/function.serialize.php
   57  | http://php.net/manual/en/language.variables.scope.php
   57  | http://php.net/manual/en/ref.exec.php


[PHP-DOC] #38959 [Opn]: php_manual_de.chm is currupt

2006-10-15 Thread bjori
 ID:  38959
 Updated by:  [EMAIL PROTECTED]
 Reported By: c dot stegemann at meteogroup dot de
 Status:  Open
-Bug Type:Website problem
+Bug Type:Documentation problem
 PHP Version: Irrelevant
 New Comment:

reclassified


Previous Comments:


[2006-09-26 11:18:11] c dot stegemann at meteogroup dot de

Description:

When I download php_manual_de.chm there is no content in the right area
of help file viewer.
I use WinXP.

php_manual_en.chm works fine.






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


[PHP-DOC] #38959 [Opn-Bgs]: php_manual_de.chm is currupt

2006-10-15 Thread wiesemann
 ID:  38959
 Updated by:  [EMAIL PROTECTED]
 Reported By: c dot stegemann at meteogroup dot de
-Status:  Open
+Status:  Bogus
 Bug Type:Documentation problem
 PHP Version: Irrelevant
-Assigned To: 
+Assigned To: wiesemann
 New Comment:

This is not a bug, even if it may work with the English CHM for you.

Quote from http://www.php.net/download-docs.php:


If you are using Microsoft Internet Explorer under Windows XP SP2 or
later and you are going to download the documentation in CHM format,
you should unblock the file after downloading it, by right-clicking
on it and selecting the properties menu item. Then click on the
'Unblock' button. Failing to do this may lead to errors in the
visualization of the file, due to a Microsoft bug.



Previous Comments:


[2006-10-15 13:24:37] [EMAIL PROTECTED]

reclassified



[2006-09-26 11:18:11] c dot stegemann at meteogroup dot de

Description:

When I download php_manual_de.chm there is no content in the right area
of help file viewer.
I use WinXP.

php_manual_en.chm works fine.






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


[PHP-DOC] cvs: phpdoc /en/reference/math/functions ceil.xml floor.xml

2006-10-15 Thread Etienne Kneuss
colder  Sun Oct 15 23:24:12 2006 UTC

  Modified files:  
/phpdoc/en/reference/math/functions floor.xml ceil.xml 
  Log:
  An example with negative input may clarify things a bit
  
http://cvs.php.net/viewvc.cgi/phpdoc/en/reference/math/functions/floor.xml?r1=1.5r2=1.6diff_format=u
Index: phpdoc/en/reference/math/functions/floor.xml
diff -u phpdoc/en/reference/math/functions/floor.xml:1.5 
phpdoc/en/reference/math/functions/floor.xml:1.6
--- phpdoc/en/reference/math/functions/floor.xml:1.5Mon Jun 16 18:31:33 2003
+++ phpdoc/en/reference/math/functions/floor.xmlSun Oct 15 23:24:12 2006
@@ -1,5 +1,5 @@
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.5 $ --
+!-- $Revision: 1.6 $ --
 !-- splitted from ./en/functions/math.xml, last change in rev 1.2 --
   refentry id=function.floor
refnamediv
@@ -27,6 +27,7 @@
 ?php
 echo floor(4.3);   // 4
 echo floor(9.999); // 9
+echo floor(-3.14); // -4
 ?
 ]]
   /programlisting
http://cvs.php.net/viewvc.cgi/phpdoc/en/reference/math/functions/ceil.xml?r1=1.5r2=1.6diff_format=u
Index: phpdoc/en/reference/math/functions/ceil.xml
diff -u phpdoc/en/reference/math/functions/ceil.xml:1.5 
phpdoc/en/reference/math/functions/ceil.xml:1.6
--- phpdoc/en/reference/math/functions/ceil.xml:1.5 Mon Jun 16 18:31:33 2003
+++ phpdoc/en/reference/math/functions/ceil.xml Sun Oct 15 23:24:12 2006
@@ -1,5 +1,5 @@
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.5 $ --
+!-- $Revision: 1.6 $ --
 !-- splitted from ./en/functions/math.xml, last change in rev 1.2 --
   refentry id=function.ceil
refnamediv
@@ -27,6 +27,7 @@
 ?php
 echo ceil(4.3);// 5
 echo ceil(9.999);  // 10
+echo ceil(-3.14);  // -3
 ?
 ]]
   /programlisting


[PHP-DOC] Documenting coding standards

2006-10-15 Thread Etienne Kneuss

Hi,

Currently, there is no official coding standards documented on php.net. 
Because of that, the coding standards of PEAR are often referenced in 
discussions.
It may be useful to document some coding standards: indenting, 
whitespaces, directly on php.net, giving beginners rules/advices to code 
in a way that looks nice.


Now, I'm afraid it can't be done from a completely objective point of 
view and depends on tastes. Maybe a vote ?


What do you think ?

-E

--
Etienne Kneuss

http://www.colder.ch/
[EMAIL PROTECTED]


Re: [PHP-DOC] Documenting coding standards

2006-10-15 Thread Friedhelm Betz

Hi,

Etienne Kneuss wrote:

Hi,

Currently, there is no official coding standards documented on php.net. 
Because of that, the coding standards of PEAR are often referenced in 
discussions.
It may be useful to document some coding standards: indenting, 
whitespaces, directly on php.net, giving beginners rules/advices to code 
in a way that looks nice.




[...]



What do you think ?


We could link to PEAR. In the docs we use the PEAR coding standard for 
examples. We should not duplicate the infos from PEAR, imho.


Friedhelm