Jump to content

[SOLVED] Warning Error Help


The Little Guy

Recommended Posts

OK, this is my first ever OOP script... When I run it through the command line, I get this error:

 

PHP Warning:  GtkArrow::__construct() requires exactly 2 arguments, 0 given in c:\ryan\hello.php on line 11

 

Warning: GtkArrow::__construct() requires exactly 2 arguments, 0 given in c:\ryan\hello.php on line 11

PHP Fatal error:  Uncaught exception 'PhpGtkConstructException' with message 'could not construct GtkArrow object' in c:\ryan\hello.php:11

Stack trace:

#0 c:\ryan\hello.php(11): GtkArrow->__construct()

#1 c:\ryan\hello.php(17): Hello->__construct()

#2 {main}

  thrown in c:\ryan\hello.php on line 11

 

Fatal error: Uncaught exception 'PhpGtkConstructException' with message 'could not construct GtkArrow object' in c:\ryan\hello.php:11

Stack trace:

#0 c:\ryan\hello.php(11): GtkArrow->__construct()

#1 c:\ryan\hello.php(17): Hello->__construct()

#2 {main}

  thrown in c:\ryan\hello.php on line 11

 

<?php

class Hello extends GtkWindow
{
    function __construct()
    {
        parent::__construct();
        $this->set_title('Arrow');
        $this->connect_simple('destroy', array('gtk', 'main_quit'));

        $arrow = new GtkArrow();
//$arrow->set(0,2);
        $this->show_all();
    }
}

new Hello();
Gtk::main();

?>

 

 

What does that mean?

Link to comment
https://forums.phpfreaks.com/topic/88232-solved-warning-error-help/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.