Gtk_VarDump
[ class tree: Gtk_VarDump ] [ index: Gtk_VarDump ] [ all elements ]

Source for file example.php

Documentation is available at example.php

  1. <?php
  2. /**
  3. *   Example for Gtk_VarDump
  4. *   @author Christian Weiske
  5. */
  6. require_once 'Gtk/VarDump.php';
  7.  
  8.  
  9. class Test
  10. {
  11.     var $color  'blue';
  12.     var $foo    'bar';
  13.     var $self   = null;
  14.     var $server = null;
  15.  
  16.     function Test()
  17.     {
  18.         $this->self   =$this;
  19.         $this->server =$_SERVER
  20.     }
  21.  
  22.     function doNothing(
  23.     {
  24.         //we're doing nothing here
  25.     }
  26. }
  27.  
  28. new Gtk_VarDump(new Test());
  29.  
  30. ?>

Documentation generated on Mon, 11 Mar 2019 15:40:34 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.