1<?php
2header('Content-Type: application/xhtml+xml; charset=utf-8');
3header('Vary: Accept');
4?>
5<?xml version="1.0" encoding="UTF-8"?>
6<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
7    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
8<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
9<head>
10	<title>An XHTML 1.0 Strict standard template</title>
11	<meta http-equiv="content-type" content="text/html;charset=UTF-8" />
12	<meta http-equiv="Content-Style-Type" content="text/css" />
13</head>
14<body>
15
16<?php
17
18include_once 'Var_Dump.php';
19
20echo '<h1>example6.php : Globals</h1>';
21
22/*
23 * example6.php : Globals
24 *
25 */
26
27Var_Dump::displayInit(
28    array(
29        'display_mode' => 'HTML4_Text'
30    ),
31    array(
32        'mode' => 'normal',
33        'offset' => 4
34    )
35);
36
37Var_Dump::display($GLOBALS);
38
39?>
40
41</body>
42</html>