略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: newt_draw_root_text

2024-04-29

newt_draw_root_text

(PECL newt >= 0.1)

newt_draw_root_textDisplays the string text at the position indicated

说明

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

Displays the string text at the position indicated.

参数

left

Column number

Note:

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

top

Line number

Note:

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

text

Text to display.

返回值

没有返回值。

范例

Example #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();
?>

参见

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.

官方地址:https://www.php.net/manual/en/function.newt-draw-root-text.php

北京半月雨文化科技有限公司.版权所有 京ICP备12026184号-3