Newt 函数
php 手册 | 脚本学堂 | 脚本编程 | 网站编程 | 系统管理 | 服务器配置 | 数据库管理 | Php教程 | python教程 | 正则表达式 | 批处理脚本 | Centos教程 | Linux基础教程

newt_button

(PECL newt >= 0.1)

newt_buttonCreate a new button

说明

resource newt_button ( int $left , int $top , string $text )

Creates a new button.

参数

left

X-coordinate of the button.

top

Y-coordinate of the button.

text

The text which should be displayed in the button.

返回值

Returns a resource link to the created button component, or FALSE on error.

范例

Example #1 A newt_button() example

<?php

$form 
newt_form();

$ok_button newt_button(512"Run Tool");
    
newt_form_add_component($form$ok_button);

?>

参见


Newt 函数
php 手册 | 脚本学堂 | 脚本编程 | 网站编程 | 系统管理 | 服务器配置 | 数据库管理 | Php教程 | python教程 | 正则表达式 | 批处理脚本 | Centos教程 | Linux基础教程