PHP Doku:: Displays the string text at the position indicated - function.newt-draw-root-text.html

Verlauf / Chronik / History: (10) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzEingabezeilenspezifische ErweiterungenNewtNewt Funktionennewt_draw_root_text

Ein Service von Reinhard Neidl - Webprogrammierung.

Newt Funktionen

<<newt_draw_form

newt_entry_get_value>>

newt_draw_root_text

(PECL newt >= 0.1)

newt_draw_root_textDisplays the string text at the position indicated

Beschreibung

void newt_draw_root_text ( int $left , int $top , string $text )

Displays the string text at the position indicated.

Parameter-Liste

left

Column number

Hinweis:

If left is negative, the position is measured from the opposite side of the screen.

top

Line number

Hinweis:

If top is negative, the position is measured from the opposite side of the screen.

text

Text to display.

Rückgabewerte

Es wird kein Wert zurückgegeben.

Beispiele

Beispiel #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 (20"Some root text");
 
newt_refresh();
 
sleep(1);

 
newt_draw_root_text (-300"Root text in the other corner");
 
newt_refresh();
 
sleep(1);

 
newt_finished();
?>

Siehe auch


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)