valgrind工具使用 使用valgrind调试程序内存泄漏 Posted on March 15, 2023 安装valgrind调试工具 [Read More] Tags: linux valgrind
如何使用 javascript 发送浏览器通知🔔 Window Notification API Posted on March 15, 2023 Notification API是存在window对象中,检查浏览器是否支持这个API if (!window.Notification) { throw '浏览器不支持通知'; } console.log('浏览器支持通知'); [Read More] Tags: javascript
vmware-workstation挂载目录 vmware-workstation挂载目录 Posted on March 14, 2023 执行挂载命令 [Read More] Tags: vmware
PHP错误处理 PHP错误处理 Posted on March 14, 2023 php 异常处理 ``` $err = null; # 设置异常回调 set_error_handler(function ( int $code, string $msg, string $file, int $line, array $context ) use (&$err) { $err = $msg; }); [Read More] Tags: php