|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2011-08-28 21:25 UTC] info at eurid dot org
[2011-09-03 21:25 UTC] info at ichigin dot co dot jp
[2015-02-26 07:37 UTC] krakjoe@php.net
-Status: Open
+Status: Suspended
[2015-02-26 07:37 UTC] krakjoe@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 01 19:00:02 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, which is really bad. 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()