Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,900 questions

51,831 answers

573 users

How to monitor a function with xdebug in PHP

1 Answer

0 votes
xdebug_start_function_monitor( [ 'strrev', 'array_push' ] );

echo strrev("php"), "<br />";

echo strrev("javascript"), "<br />";

var_dump(xdebug_get_monitored_functions());

xdebug_stop_function_monitor();


/*
run: 

php
tpircsavaj
C:\xampp\htdocs\allonpage.com\test.php:9:
array (size=2)
  0 => 
    array (size=3)
      'function' => string 'strrev' (length=6)
      'filename' => string 'C:\xampp\htdocs\allonpage.com\test.php' (length=38)
      'lineno' => int 5
  1 => 
    array (size=3)
      'function' => string 'strrev' (length=6)
      'filename' => string 'C:\xampp\htdocs\allonpage.com\test.php' (length=38)
      'lineno' => int 7

*/

 



answered Jul 6, 2017 by avibootz

Related questions

1 answer 141 views
1 answer 91 views
1 answer 136 views
1 answer 170 views
1 answer 140 views
...