©
This document uses PHP Chinese website manual Release
(PECL newt >= 0.1)
newt_win_entries —
$title
, string $text
, int $suggested_width
, int $flex_down
, int $flex_up
, int $data_width
, array &$items
, string $button1
[, string $...
] )本函数还未编写文档,仅有参数列表。
title
text
suggested_width
flex_down
flex_up
data_width
items
button1
button2
Example #1 A newt_win_entries() example
<?php
newt_init ();
newt_cls ();
$entries [] = array( 'text' => 'First name:' , 'value' => & $f_name );
$entries [] = array( 'text' => 'Last name:' , 'value' => & $l_name );
$rc = newt_win_entries ( "User information" , "Please enter your credentials:" , 50 , 7 , 7 , 30 , $entries , "Ok" , "Back" );
newt_finished ();
if ( $rc != 2 ) {
echo "Your name is: $f_name $l_name \n" ;
}
?>