|   | php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
| 
  [2008-05-01 21:41 UTC] colder@php.net
 Description:
------------
php.net/rand
The proto is : rand([min, max]); 
xml is :
<methodparam choice="opt"><type>int</type><parameter>min</parameter></methodparam>
    <methodparam><type>int</type><parameter>max</parameter></methodparam>
With PhD, it ends up being: int rand  ([ int $min  ], int $max  )
So, either 
1) the renderer don't handle groups of optional args anymore, or
2) there is a new syntax to group optional args together and the xml should be fixed.
Regards
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits             | |||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Fri Oct 31 10:00:02 2025 UTC | 
The trouble with that is this: int rand ([ int $min [, int $max ]] ) versus this: int rand ([ int $min , int $max ] ) and rand() follows the latter because it requires either 0 or 2 arguments and not 1. PhD creates the first if choice="opt" is used twice. So basically we need a syntax for each and it appears both our dsssl and xsl based build systems treated this differently. The BC approach would add the following to PhD: if (only the first arg is optional) { make them all optional together; } But it's a strange syntax and ideally we'd come up with some better markup.> if (only the first arg is optional) { > make them all optional together; > } That will break bunch of array_*() argument listing were the optional parameter is the 3rd of 5. This was an error in the XSL which was fixed in PhD. The markup for rand() is simply wrong. This function can be used in two different ways, either by passing no parameters or two. The correct way to do this is having two methodsynopsis, one that takes no arguments and another one that takes two (requiered) arguments. -Hannes