Sophie

Sophie

distrib > Mageia > 6 > x86_64 > media > core-release > by-pkgid > 3c9a55b22d61af332f45ea9e479f884b > files > 3

php-pear-Gtk_VarDump-1.0.1-7.mga6.noarch.rpm

<?php
/**
*   Example for Gtk_VarDump
*   @author Christian Weiske
*/
require_once 'Gtk/VarDump.php';


class Test
{
    var $color  = 'blue';
    var $foo    = 'bar';
    var $self   = null;
    var $server = null;

    function Test()
    {
        $this->self   =& $this;
        $this->server =& $_SERVER; 
    }

    function doNothing() 
    {
        //we're doing nothing here
    }
}

new Gtk_VarDump(new Test());

?>