Daniel Brown schreef:
On Feb 7, 2008 7:10 PM, Jochem Maas <[EMAIL PROTECTED]> wrote:
McNaught, Scott schreef:
. Get profile results for novices without having to mess around
installing php binaries such as APD / zend debugger etc
I suppose that includes xdebug?
If xdebug works as
On Feb 7, 2008 7:10 PM, Jochem Maas <[EMAIL PROTECTED]> wrote:
> McNaught, Scott schreef:
> > . Get profile results for novices without having to mess around
> > installing php binaries such as APD / zend debugger etc
>
> I suppose that includes xdebug?
If xdebug works as a local binar
McNaught, Scott schreef:
Hi there,
Is it possible to make the declare(ticks=1) statement apply to *all*
functions executed in a php script, regardless of scope?
is the declare() pragma not a file scope wotsit? i.e. you'd have to
do declare(ticks=1); at the top of each file.
...
.
On Wed, December 19, 2007 10:21 pm, php mail wrote:
> Is there any tool to profiling PHP app ?
Compile PHP --with-debug and then use:
valgrind --tool=callgrind php -q yourscript.php
You get a nifty fabulous listing of where X% of your time is being
spent and a really cool diagram of your functio
php mail wrote:
Hi All,
Is there any tool to profiling PHP app ?
http://www.xdebug.org/docs/profiler
--
Postgresql & php tutorials
http://www.designmagick.com/
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
On Thu, 2007-12-20 at 11:21 +0700, php mail wrote:
> Is there any tool to profiling PHP app ?
Yes, there are a few. The best that I have found anyway, is Xdebug 2
(http://pecl.php.net/xdebug). It can also integrate nicely with PHPUnit
as well to do code coverage as well as make your life generall
Nathan Nobbe wrote:
all,
i am just getting my feet wet w/ profiling.
its nice to see i can invoke a page from the browser then
see an analysis in kcachegrind using xdebug to generate the data.
however, im curious about 'finding the weak spots in an application'.
say for instance i arrive at a ne
Hello Travis,
Friday, May 7, 2004, 7:06:03 PM, you wrote:
TL> Hi Richard,
TL> Just curious...how do you do your profiling?
Zend IDE.
View the page in IE, click the Profile button, analyse the pretty
pie-charts and graphs and stack trace until I see where the bottle
necks are :)
--
Best regard
Yes, that's what I use, except I use microtime();
Justin French
on 23/06/02 11:49 PM, James Drabb ([EMAIL PROTECTED]) wrote:
> Hello all,
>
> Does PHP have any built in functions to do simple profiling on a page? Or
> should
> I just use $time1=time(); do_stuff(); $time2=time(); echo $time2
9 matches
Mail list logo