test()

Inspects the output of a PHP code.

Table of Contents
  1. Description
  2. Example

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.