Answers for "php debug variable"

PHP
1

how to debug in php

ini_set('display_errors', 'On');
error_reporting(E_ALL);
Posted by: Guest on June-16-2020
0

php dump to page

$variable = "Hello";

var_dump($variable);
Posted by: Guest on February-20-2020

Browse Popular Code Answers by Language