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
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/
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
[..skip..]
echo = trim($text, " \t."); // "These are a few words :)"
What is it supposed to be ?
--
Andrey Demenev aka Blindman
[EMAIL PROTECTED]
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
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