Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 17200 программистов и 1834 робота. Сейчас ищут 1664 программиста ...
Gtk2_EntryDialog::get
Вернуться к: Gtk2_EntryDialog
Gtk2_EntryDialog::get
Gtk2_EntryDialog::get() – Show the dialog and retrieve the text
Synopsis
require_once 'Gtk2/EntryDialog.php';
string Gtk2_EntryDialog::get ( string $message , string $default , GtkWindow $parent )
Creates a dialog with the given parameters, runs it, and returns the text set. If the user cancelled the dialog, this method returns FALSE. In any other case (even when the text is empty), the a string with the text is returned.
<?php
require_once 'Gtk2/EntryDialog.php';
$text = Gtk2_EntryDialog::get(
'What\'s your name?', //the message
'Don\'t know' //The default text
);
if ($text !== false) {
echo 'The name is: ';
var_dump($text);
} else {
echo "You cancelled\r\n";
}
?>
Parameter
- string $message
-
Message to display.
- string $default
-
Default text for the entry.
- GtkWindow $parent
-
Parent window (can be null).
Return value
returns False if the user cancelled input, the text (string) otherwise.
Вернуться к: Gtk2_EntryDialog