|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2008-01-01 06:19 UTC] wiesemann@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 05:00:01 2025 UTC |
Description: ------------ PHP 5.2.3, APC 3.0.15-dev, APD 1.0.1 Calls to COM methods and properties are not tracked by the profiler. Further it seems that their execution time is accounted to the next function being called. Reproduce code: --------------- function MyFunc($x) { return ceil($x); } $o = new COM(....); MyFunc($o->SomeMethodReturningFloat()); SomeMethodReturningFloat() is not tracked and its time is added to ceil() Expected result: ---------------- COM->SomeMethodReturningFloat should be in the function list with proper timing Actual result: -------------- SomeMethodReturningFloat() is not tracked and its time is added to ceil()