test()
Inspects the output of a PHP code.
Table of Contents
Description
test(...$lot): void;This function inspects the output of a PHP code or PHP codes. It is like PHP’s var_dump() function but shorter.
Example
test($_GET);
test($_GET, $_POST);
test($_GET, $_POST, $_SERVER);abort()
Aborts the next script execution with a message.
test()
Inspects the output of a PHP code.