Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

newt_win_entries(3) [php man page]

NEWT_WIN_ENTRIES(3)							 1						       NEWT_WIN_ENTRIES(3)

newt_win_entries -

SYNOPSIS
int newt_win_entries (string $title, string $text, int $suggested_width, int $flex_down, int $flex_up, int $data_width, array &$items, string $button1, [string $...]) DESCRIPTION
Warning This function is currently not documented; only its argument list is available. PARAMETERS
o $title - o $text - o $suggested_width - o $flex_down - o $flex_up - o $data_width - o $items - o $button1 - o $button2 - RETURN VALUES
EXAMPLES
Example #1 A newt_win_entries(3) 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 "; } ?> PHP Documentation Group NEWT_WIN_ENTRIES(3)

Check Out this Related Man Page

REALPATH_CACHE_GET(3)							 1						     REALPATH_CACHE_GET(3)

realpath_cache_get - Get realpath cache entries

SYNOPSIS
array realpath_cache_get (void ) DESCRIPTION
Get the contents of the realpath cache. RETURN VALUES
Returns an array of realpath cache entries. The keys are original path entries, and the values are arrays of data items, containing the resolved path, expiration date, and other options kept in the cache. EXAMPLES
Example #1 realpath_cache_get(3) example <?php var_dump(realpath_cache_get()); ?> The above example will output something similar to: array(2) { ["/test"]=> array(4) { ["key"]=> int(123456789) ["is_dir"]=> bool(true) ["realpath"]=> string(5) "/test" ["expires"]=> int(1260318939) } ["/test/test.php"]=> array(4) { ["key"]=> int(987654321) ["is_dir"]=> bool(false) ["realpath"]=> string(12) "/root/test.php" ["expires"]=> int(1260318939) } } SEE ALSO
realpath_cache_size(3). PHP Documentation Group REALPATH_CACHE_GET(3)
Man Page

4 More Discussions You Might Find Interesting

1. Programming

string returning function

I have two string returning function in ESQL/C char *segment_name(lbuffer) char *lbuffer; {..... and char *get_bpdvalue(f_name) char *f_name; {...... both declared above main() char *get_bpdvalue(); char *segment_name(); my problem is segment_name works on sprintf and strcpy... (5 Replies)
Discussion started by: jisc
5 Replies

2. Shell Programming and Scripting

Counting string of a variable

Hi, There is a variable f_name, it store some file names. Value of f_name=a.sql b.sql c.sql....... like this. want to count how many file name the var f_name stores. Without using loop is there any command to count that. (5 Replies)
Discussion started by: Dip
5 Replies

3. UNIX for Dummies Questions & Answers

Convert entries in a text file to values in a string

How to convert entries in a text file to values in a string? ex: I have a text file list.txt with following entries : aaaa bbbb cccc dddd I want to move the values in the list.txt file to an array (names) need a small script to do that? Thanks for your help in advance (3 Replies)
Discussion started by: kukretiabhi13
3 Replies

4. Programming

How to fill a memory with random numbers in C

Hi, I have a parametrized memory mem. I want to fill this memory with random numbers with respect to the data_width. can anyone help me on this.. (3 Replies)
Discussion started by: vdhingra123
3 Replies