# kint-php-kint **Repository Path**: mirrors/kint-php-kint ## Basic Information - **Project Name**: kint-php-kint - **Description**: 当调试PHP代码时,var_dump()、print_r()和debug_backtrace()是我们最常用的工具 - **Primary Language**: PHP - **License**: MIT - **Default Branch**: master - **Homepage**: https://www.oschina.net/p/kint - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-12-07 - **Last Updated**: 2026-01-31 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Kint - Advanced PHP dumper ![Screenshot](https://kint-php.github.io/kint/images/intro.png) ## What am I looking at? Kint is a dumper in the vein of **[var_dump()](https://www.php.net/function.var_dump)**, with keyboard controls, search, access path provision, and automatic data parsing. In other words, when you dump a JSON string Kint will let you unfold and search the JSON structure and even provide you the code you need to access specific fields. ## Installation ```bash composer require kint-php/kint --dev ``` ### Without composer [Download the file](https://raw.githubusercontent.com/kint-php/kint/master/build/kint.phar) and simply ```php require 'kint.phar'; ``` ## Usage ```php