Login   Register  
PHP Classes
elePHPant
Icontem

File: example.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  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: 2005-02-08 01:41
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();
?>