debugging long running PHP script

后端 未结 11 2877
我寻月下人不归
我寻月下人不归 2021-02-19 06:46

I have php script running as a cron job, extensively using third party code. Script itself has a few thousands LOC. Basically it\'s the data import / treatment script. (JSON to

11条回答
  •  长发绾君心
    2021-02-19 07:01

    Yes its possible and You can use Kint (PHP Debugging Script)

    What is it? Kint for PHP is a tool designed to present your debugging data in the absolutely best way possible.

    In other words, it's var_dump() and debug_backtrace() on steroids. Easy to use, but powerful and customizable. An essential addition to your development toolbox.

    Still lost? You use it to see what's inside variables.

    Act as a debug_backtrace replacer, too

    you can download here or Here

    Total Documentations and Help is here

    Plus, it also supports almost all php framework

    • CodeIgniter
    • Drupal
    • Symfony
    • Symfony 2
    • WordPress
    • Yii
    • framework
    • Zend Framework

    All the Best.... :)

提交回复
热议问题