English | 中文
Yet Another Swoole Debugger.
You'll need to install the Boost library first.
macos:
brew install boostubuntu:
apt-get install libboost-all-devcentos:
yum install boost boost-develphpize --clean && \
phpize && \
./configure && \
make clean && \
make && \
make installset the ini file:
zend_extension=yasd.sosee the extension info:
php --ri yasdzend_extension=yasd
yasd.debug_mode=remote
yasd.remote_host=127.0.0.1
yasd.remote_port=9000All command supports fuzzy matching of priorities.
set the ini file:
zend_extension=yasd
yasd.debug_mode=cmdphp -e test.phpllist source code
b absolute-file-path linenoThis will also save the breakpoint information in the cache file -- .breakpoints_file.log
You can change this file name by the ini file, e.g.
yasd.breakpoints_file="yasd.log"If the cache file exists, the breakpoints in the file are automatically loaded when debug is started.
d absolute-file-path linenoIf a breakpoint is set or deleted without specifying absolute-file-path, It will set breakpoint in the current file.
We can monitor the variable changes or conditions, for example:
watch awatch a > 10watch name == swoolernsfbtshow all breakpoints:
icqpvariable name do not need to have $, for example:
p a
p this
p this->propleWhen using yasd, if the framework starts slowly (most of the time it's because the framework is scanning a lot of files), you can execute the following command.
composer dump-autoload -oThen modify the following configuration config/config.php:
'scan_cacheable' => env('SCAN_CACHEABLE', true)We did not find a slow start problem.
We did not find a slow start problem.
We did not find a slow start problem.
We did not find a slow start problem.
- No absolute path to the file is used
- The breakpoint is not a valid line, such as a function declaration, blank line, etc
- The code is generated with proxy classes, such as Hyperf. So you need to set breakpoints in the proxy class.