Skip to content

dragomano/VarDumper-for-SMF

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

VarDumper for SMF

SMF 2.1 License Hooks only: Yes PHP

  • Tested on: PHP 8.0.24 / MariaDB 10.6.7
  • Languages: English, Russian

Description

This small mod adds the Symfony VarDumper component to work with dump() and dd() functions (instead of var_dump()).

Examples

$data = [1, 2, 3];
var_dump($data);

$data = [1, 2, 3];
dump($data);