Simple steps for install XDebug on your Windows machine.
0. Write on test.php this code:
phpinfo();
1. Copy all informmation from phpinfo page.
2. Open https://xdebug.org/wizard.php and insert phpinfo to textarea
3. Click “Analyse my phpinfo() output” and follow to provided instructions
Something like:
- Download php_xdebug-2.5.1-7.1-vc14.dll
- Move the downloaded file to
E:\xampp\php\ext
- Update
E:\xampp\php\php.ini
and change the line zend_extension =E:\xampp\php\ext\php_xdebug-2.5.1-7.1-vc14.dll
- Restart the webserver
$obj1 = new stdClass(); $obj1->name = 'A'; $obj1->date = date('Y-m-d H:i:s', 1458754362); var_dump($result);
Happy debugging.