How can to set "zend_pass_function" for debuggation?
I'm trying to debbug with PHPStorm and xdebug.
I configured the environment with these two tutorials:
https://confluence.jetbrains.com/display/PhpStorm/Validating+Your+Debugging+Configuration
But, when I try to run, I get this error message:
undefined symbol: zend_pass_function
So, how can I fix it?
Please sign in to leave a comment.
Hi there,
It could be that you are using incompatible xdebug build (e.g. "nts" version of xdebug with "ts" version of PHP (or other way around)) .. or you may be using xdebug that meant to be used with different PHP version.
To check the above -- try following this page: https://xdebug.org/wizard.php
Yes Andriy! Happened something like you said: the application that I was running isn't ok with php7 (my version).
Thanks for your help.