|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2006-06-04 20:58 UTC] sfox@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 05:00:01 2025 UTC |
Description: ------------ The get_date() method for the GtkCalendar class in the Win32 DLL for PHP-GTK2 is missing, and produces a fatal error when used. Reproduce code: --------------- <?php $window=new GladeXML("calendar.glade"); $window->signal_autoconnect(); Gtk::main(); function on_calendar_day_selected() { global $window; $cal=$window->get_widget("calendar"); print_r($cal->get_date()); return; } ?> Expected result: ---------------- Array { [0]=2006 [1]=06 [2]=04 } Actual result: -------------- PHP Fatal error: Call to undefined method GtkCalendar::get_date() Fatal error: Call to undefined method GtkCalendar::get_date()