Mantis - Quercus
|
|||||
Viewing Issue Advanced Details | |||||
|
|||||
ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
2927 | major | always | 09-11-08 17:27 | 09-12-08 09:25 | |
|
|||||
Reporter: | koreth | Platform: | |||
Assigned To: | ferg | OS: | |||
Priority: | normal | OS Version: | |||
Status: | closed | Product Version: | 3.2.1 | ||
Product Build: | Resolution: | fixed | |||
Projection: | none | ||||
ETA: | none | Fixed in Version: | 3.2.1 | ||
|
|||||
Summary: | 0002927: Dynamic method calls don't work with more than 5 arguments | ||||
Description: |
The first method call works; the second bombs out with "Fatal Error: 'x' is an unknown method of ObjectExtValue@784920740[Foo]." <?php class Foo { function __call($function, $args) { print "call $function\n"; } } $c = new Foo(); $method = 'x'; // This works print $c->$method(1, 1, 1, 1, 1); // But this doesn't print $c->$method(1, 1, 1, 1, 1, 1); |
||||
Steps To Reproduce: | |||||
Additional Information: | This was a tricky one to figure out how to reproduce! | ||||
Relationships | |||||
Attached Files: |
Notes | |||||
|
|||||
|
|