PHP Classes

File: example.php

Recommend this page to a friend!
  Classes of Stephan Krauss   Debugging for Editor Homesite   example.php   Download  
File: example.php
Role: Example script
Content type: text/plain
Description: example
Class: Debugging for Editor Homesite
Debug PHP code with the Homesite editor
Author: By
Last change:
Date: 19 years ago
Size: 336 bytes
 

Contents

Class file image Download
<?
// Includieren der Klasse 'debug.inc'
include_once('debug.inc');


for(
$i = 0; $i < 20 ; $i++){
   
$wert[$i] = 'Wert: '.$i;
}

// Debugging der Variable '$wert'
$debug->input(__LINE__,$wert,"Inhalt der variable 'wert' !");

/*
aaaaaaaaaaaa;
bbbbbbbbbbbbb;
cccccccccccccccc;
dddddddddddddddd;
*/

$debug->close();
?>