PHP Classes

File: examples/testDebug.php

Recommend this page to a friend!
  Classes of Jorge Castro   Mapache Commons   examples/testDebug.php   Download  
File: examples/testDebug.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Mapache Commons
Manipulate text, collections and debug PHP code
Author: By
Last change:
Date: 3 years ago
Size: 317 bytes
 

Contents

Class file image Download
<?php

use mapache_commons\Debug;

include
"../lib/Collection.php";
include
"../lib/Debug.php";

$countries=array("USA","Canada","Mexico","MapacheLand");
$countriesAssoc=array("First"=>"USA","Second"=>"Canada","Third"=>"Mexico","Fourth"=>"MapacheLand");

Debug::var_dump($countries);
Debug::var_dump($countries,true);