PHP Manual
This manual is provided as a courtesy. It is not an official source. Please check php.net for updated information.
(PECL)
Displays the string text at the position indicated.
Column number
Note: If left is negative, the position is measured from the opposite side of the screen.
Line number
Note: If top is negative, the position is measured from the opposite side of the screen.
Text to display.
Example 1. A newt_draw_root_text() example
This code demonstrates drawing of titles in the both corners of the screen.
<? 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();?>