[PHP-DOC] Re: [PATCH] preg_match and preg_match_all

2004-10-12 Thread Andrey Demenev
On Tuesday 12 October 2004 21:08, Mehdi Achour wrote: > Hi Andrey, > > The texts are okay, you'll find some comments on the structure : > [...] Fixed as per your comments. Thank you for reviewing the patch Andrey

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

2004-10-12 Thread Andrey Demenev
blindmanTue Oct 12 07:20:31 2004 EDT Modified files: /phpdoc/en/reference/pcre/functions preg-match-all.xml preg-match.xml Log: => use &example.outputs; http://cvs.php.net/diff.php/phpdoc/en/reference/pcre/

[PHP-DOC] [PATCH] preg_match and preg_match_all

2004-10-11 Thread Andrey Demenev
Documentation on preg_match and preg_match_all incorrectly describes meaning of offset parameter. Using offset parameter is NOT equivalent to passing substr($subject, $offset) to preg_match in place of the subject string. Although I have karma to commit the patch, I would like it to be "approved

[PHP-DOC] Re: cvs: phpdoc /en/reference/strings/functions trim.xml

2004-04-29 Thread Andrey Demenev
[..skip..] echo = trim($text, " \t."); // "These are a few words :)" What is it supposed to be ? -- Andrey Demenev aka Blindman [EMAIL PROTECTED]

[PHP-DOC] Re: Incomplete documentation on number_format

2004-04-02 Thread Andrey Demenev
Also, sample code in documentation on echo says // However, the following examples will work: ($some_var) ? print('true'): print('false'); // *print is a function* echo $some_var ? 'true': 'false'; // changing the statement around but docs on print says print() *is not actually a real function (it

[PHP-DOC] Incomplete documentation on number_format

2004-04-02 Thread Andrey Demenev
Documentation on number_format says : Only the first character of thousands_sep is used. For example, if you use foo as thousands_sep on the number 1000 , number_format will return 1f000. Actually that is true for dec_point as well, and this should be mentioned in the docs. -- Andrey Demenev