Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 16108 программистов и 1772 робота. Сейчас ищут 1811 программистов ...
newt_draw_root_text - Displays the string text at the position indicated
Вернуться к: Newt Функции
newt_draw_root_text
(PECL newt >= 0.1)
newt_draw_root_text — Displays the string text at the position indicated
Описание
void newt_draw_root_text
( int
$left
, int $top
, string $text
)Displays the string text at the position indicated.
Список параметров
-
left
-
Column number
Замечание:
If left is negative, the position is measured from the opposite side of the screen.
-
top
-
Line number
Замечание:
If top is negative, the position is measured from the opposite side of the screen.
-
text
-
Text to display.
Возвращаемые значения
Эта функция не возвращает значения после выполнения.
Примеры
Пример #1 A newt_draw_root_text() example
This code demonstrates drawing of titles in the both corners of the screen.
<?php
newt_init();
newt_cls();
newt_draw_root_text (2, 0, "Some root text");
newt_refresh();
sleep(1);
newt_draw_root_text (-30, 0, "Root text in the other corner");
newt_refresh();
sleep(1);
newt_finished();
?>
Смотрите также
- newt_push_help_line() - Saves the current help line on a stack, and displays the new line
- newt_pop_help_line() - Replaces the current help line with the one from the stack
Вернуться к: Newt Функции