eschmid Sat Jan 5 02:58:33 2002 EDT
Modified files:
/phpdoc funclist.txt funcsummary.txt
Log:
Newer versions.
Index: phpdoc/funclist.txt
diff -u phpdoc/funclist.txt:1.14 phpdoc/funclist.txt:1.15
--- phpdoc/funclist.txt:1.14 Sun Dec 30 03:49:48 2001
+++ phpdoc/funclist.txt Sat Jan 5 02:58:33 2002
@@ -413,12 +413,14 @@
# php4/ext/ftp/php_ftp.c
ftp_cdup
ftp_chdir
+ftp_close
ftp_connect
ftp_delete
ftp_exec
ftp_fget
ftp_fput
ftp_get
+ftp_get_option
ftp_login
ftp_mdtm
ftp_mkdir
@@ -430,6 +432,7 @@
ftp_rawlist
ftp_rename
ftp_rmdir
+ftp_set_option
ftp_site
ftp_size
ftp_systype
@@ -1176,6 +1179,115 @@
swfsprite
swftext
swftextfield
+# php4/ext/ming/mingold.c
+add
+add
+addaction
+addaction
+addcolor
+addentry
+addfill
+addshape
+addstring
+addstring
+align
+drawarc
+drawcircle
+drawcubic
+drawcubicto
+drawcurve
+drawcurveto
+drawglyph
+drawline
+drawlineto
+getascent
+getascent
+getdescent
+getdescent
+getheight
+getleading
+getleading
+getshape1
+getshape2
+getwidth
+getwidth
+getwidth
+labelframe
+labelframe
+ming_setcubicthreshold
+ming_setscale
+ming_useswfversion
+move
+movepen
+movepento
+moveto
+moveto
+moveto
+multcolor
+nextframe
+nextframe
+output
+remove
+remove
+rotate
+rotateto
+rotateto
+save
+savetofile
+scale
+scaleto
+scaleto
+setaction
+setbackground
+setbounds
+setcolor
+setcolor
+setdepth
+setdimension
+setdown
+setfont
+setfont
+setframes
+setframes
+setheight
+setheight
+sethit
+setindentation
+setleftfill
+setleftmargin
+setline
+setlinespacing
+setmargins
+setmatrix
+setname
+setname
+setover
+setrate
+setratio
+setrightfill
+setrightmargin
+setspacing
+setup
+skewx
+skewxto
+skewxto
+skewy
+skewyto
+skewyto
+streammp3
+swfaction
+swfbitmap
+swfbutton
+swfbutton_keypress
+swffill
+swffont
+swfgradient
+swfmorph
+swfmovie
+swfshape
+swfsprite
+swftext
+swftextfield
# php4/ext/mnogosearch/php_mnogo.c
udm_add_search_limit
udm_alloc_agent
@@ -2249,6 +2361,7 @@
fileperms
filesize
filetype
+finite
floatval
flock
floor
@@ -2348,8 +2461,11 @@
is_uploaded_file
is_writable
is_writeable
+isinf
+isnan
join
key
+key_exists
krsort
ksort
lcg_value
Index: phpdoc/funcsummary.txt
diff -u phpdoc/funcsummary.txt:1.13 phpdoc/funcsummary.txt:1.14
--- phpdoc/funcsummary.txt:1.13 Sun Dec 30 03:49:48 2001
+++ phpdoc/funcsummary.txt Sat Jan 5 02:58:33 2002
@@ -654,7 +654,7 @@
int domxml_test(int id)
Unity function for testing
string domxml_version(void)
- Dumps document into string
+ Get XML library version
int node_attributes(zval **attributes, int node)
Returns list of children nodes
int node_children([int node])
@@ -670,7 +670,7 @@
int xpath_eval([int xpathctx_handle,] string str)
Evaluates the XPath Location Path in the given string
int xpath_eval_expression([int xpathctx_handle,] string str)
- Evaluates the XPath Location Path in the given string
+ Evaluates the XPath expression in the given string
bool xpath_init(void)
Initializing XPath environment
string xpath_new_context([int doc_handle])
@@ -845,49 +845,53 @@
string fribidi_log2vis(string str, string direction, int charset)
Convert a logical string to a visual one
# php4/ext/ftp/php_ftp.c
-int ftp_cdup(int stream)
+bool ftp_cdup(resource stream)
Changes to the parent directory
-int ftp_chdir(int stream, string directory)
+bool ftp_chdir(resource stream, string directory)
Changes directories
-int ftp_connect(string host [, int port])
+void ftp_close(resource stream)
+ Closes the FTP stream
+resource ftp_connect(string host [, int port [, int timeout)]])
Opens a FTP stream
-int ftp_delete(int stream, string path)
+bool ftp_delete(resource stream, string file)
Deletes a file
-int ftp_exec(int stream, string command)
- Requests execution of a program on the ftp server
-int ftp_fget(int stream, int fp, string remote_file, int mode)
+bool ftp_exec(resource stream, string command)
+ Requests execution of a program on the FTP server
+bool ftp_fget(resource stream, resource fp, string remote_file, int mode)
Retrieves a file from the FTP server and writes it to an open file
-int ftp_fput(int stream, string local_file, string remote_file, int mode)
+bool ftp_fput(resource stream, string remote_file, resource fp, int mode)
Stores a file from an open file to the FTP server
-int ftp_get(int stream, string local_file, string remote_file, int mode)
+bool ftp_get(resource stream, string local_file, string remote_file, int mode)
Retrieves a file from the FTP server and writes it to a local file
-int ftp_login(int stream, string username, string password)
+mixed ftp_get_option(resource stream, int option)
+ Gets an FTP option
+bool ftp_login(resource stream, string username, string password)
Logs into the FTP server
-int ftp_mdtm(int stream, string path)
+int ftp_mdtm(resource stream, string filename)
Returns the last modification time of the file, or -1 on error
-string ftp_mkdir(int stream, string directory)
- Creates a directory
-array ftp_nlist(int stream, string directory)
+string ftp_mkdir(resource stream, string directory)
+ Creates a directory and returns the absolute path for the new directory or false
+on error
+array ftp_nlist(resource stream, string directory)
Returns an array of filenames in the given directory
-int ftp_pasv(int stream, int pasv)
+bool ftp_pasv(resource stream, bool pasv)
Turns passive mode on or off
-int ftp_put(int stream, string remote_file, string local_file, int mode)
+bool ftp_put(resource stream, string remote_file, string local_file, int mode)
Stores a file on the FTP server
-string ftp_pwd(int stream)
+string ftp_pwd(resource stream)
Returns the present working directory
-int ftp_quit(int stream)
- Closes the FTP stream
-array ftp_rawlist(int stream, string directory)
+array ftp_rawlist(resource stream, string directory)
Returns a detailed listing of a directory as an array of output lines
-int ftp_rename(int stream, string src, string dest)
+bool ftp_rename(resource stream, string src, string dest)
Renames the given file to a new path
-int ftp_rmdir(int stream, string directory)
+bool ftp_rmdir(resource stream, string directory)
Removes a directory
-int ftp_site(int stream, string cmd)
+bool ftp_set_option(resource stream, int option, mixed value)
+ Sets an FTP option
+bool ftp_site(resource stream, string cmd)
Sends a SITE command to the server
-int ftp_size(int stream, string path)
+int ftp_size(resource stream, string filename)
Returns the size of the file, or -1 on error
-string ftp_systype(int stream)
+string ftp_systype(resource stream)
Returns the system type identifier
# php4/ext/gd/gd.c
int image2wbmp(int im [, string filename [, int threshold]])
@@ -1056,9 +1060,9 @@
Return the types of images supported in a bitfield - 1=GIF, 2=JPEG, 4=PNG,
8=WBMP, 16=XPM
int imagewbmp(int im [, string filename, [, int foreground]])
Output WBMP image to browser or file
-void jpeg2wbmp (string f_org, string f_dest, int d_height, int d_width)
+void jpeg2wbmp (string f_org, string f_dest, int d_height, int d_width, int
+threshold)
Convert JPEG image to WBMP image
-void png2wbmp (string f_org, string f_dest, int d_height, int d_width)
+void png2wbmp (string f_org, string f_dest, int d_height, int d_width, int threshold)
Convert PNG image to WBMP image
# php4/ext/gd/gdt1.c
array imagepsbbox(string text, int font, int size [, int space, int tightness, int
angle])
@@ -1805,8 +1809,6 @@
Delete attribute values
int ldap_mod_replace(int link, string dn, array entry)
Replace attribute values with new ones
-int ldap_modify(int link, string dn, array entry)
- Modify an LDAP entry
string ldap_next_attribute(int link, int result, int ber)
Get the next attribute in result
int ldap_next_entry(int link, int entry)
@@ -2283,6 +2285,195 @@
Sets the variable name of this textfield
void swftextfield_setRightMargin(float margin)
Sets the right margin of this textfield
+# php4/ext/ming/mingold.c
+void ming_setcubicthreshold (int threshold)
+ Set cubic threshold (?)
+void ming_setscale(int scale)
+ Set scale (?)
+void ming_useswfversion(int version)
+ Use SWF version (?)
+object swfaction_init(string)
+ Returns a new SWFAction object, compiling the given script
+void swfbitmap_getHeight(void)
+ Returns the height of this bitmap
+void swfbitmap_getWidth(void)
+ Returns the width of this bitmap
+class swfbitmap_init(file [, maskfile])
+ Returns a new SWFBitmap object from jpg (with optional mask) or dbl file
+void swfbutton_addAction(SWFAction action, int flags)
+ Sets the action to perform when conditions described in flags is met
+void swfbutton_addShape(SWFCharacter character, int flags)
+ Sets the character to display for the condition described in flags
+object swfbutton_init(void)
+ Returns a new SWFButton object
+int swfbutton_keypress(string str)
+ Returns the action flag for keyPress(char)
+void swfbutton_setAction(SWFAction)
+ Sets the action to perform when button is pressed
+void swfbutton_setDown(SWFCharacter)
+ Sets the character for this button's down state
+void swfbutton_setHit(SWFCharacter)
+ Sets the character for this button's hit test state
+void swfbutton_setOver(SWFCharacter)
+ Sets the character for this button's over state
+void swfbutton_setUp(SWFCharacter)
+ Sets the character for this button's up state
+void swfdisplayitem_addAction(SWFAction action, int flags)
+ Adds this SWFAction to the given SWFSprite instance
+void swfdisplayitem_addColor(int r, int g, int b [, int a])
+ Sets the add color part of this SWFDisplayItem's CXform to (r, g, b [, a]), a
+defaults to 0
+void swfdisplayitem_move(int dx, int dy)
+ Displaces this SWFDisplayItem by (dx, dy) in movie coordinates
+void swfdisplayitem_moveTo(int x, int y)
+ Moves this SWFDisplayItem to movie coordinates (x, y)
+void swfdisplayitem_multColor(float r, float g, float b [, float a])
+ Sets the multiply color part of this SWFDisplayItem's CXform to (r, g, b [, a]),
+ a defaults to 1.0
+void swfdisplayitem_rotate(float degrees)
+ Rotates this SWFDisplayItem the given (clockwise) degrees from its current
+orientation
+void swfdisplayitem_rotateTo(float degrees)
+ Rotates this SWFDisplayItem the given (clockwise) degrees from its original
+orientation
+void swfdisplayitem_scale(float xScale, float yScale)
+ Multiplies this SWFDisplayItem's current x scale by xScale, its y scale by
+yScale
+void swfdisplayitem_scaleTo(float xScale [, float yScale])
+ Scales this SWFDisplayItem by xScale in the x direction, yScale in the y, or
+both to xScale if only one arg
+void swfdisplayitem_setDepth(int depth)
+ Sets this SWFDisplayItem's z-depth to depth. Items with higher depth values are
+drawn on top of those with lower values
+void swfdisplayitem_setMatrix(float a, float b, float c, float d, float x, float y)
+ Sets the item's transform matrix
+void swfdisplayitem_setName(string name)
+ Sets this SWFDisplayItem's name to name
+void swfdisplayitem_setRatio(float ratio)
+ Sets this SWFDisplayItem's ratio to ratio. Obviously only does anything if
+displayitem was created from an SWFMorph
+void swfdisplayitem_skewX(float xSkew)
+ Adds xSkew to this SWFDisplayItem's x skew value
+void swfdisplayitem_skewXTo(float xSkew)
+ Sets this SWFDisplayItem's x skew value to xSkew
+void swfdisplayitem_skewY(float ySkew)
+ Adds ySkew to this SWFDisplayItem's y skew value
+void swfdisplayitem_skewYTo(float ySkew)
+ Sets this SWFDisplayItem's y skew value to ySkew
+class swffill_init(void)
+ Returns a new SWFFill object
+void swffill_moveTo(int x, int y)
+ Moves this SWFFill to shape coordinates (x,y)
+void swffill_rotateTo(float degrees)
+ Rotates this SWFFill the given (clockwise) degrees from its original orientation
+
+void swffill_scaleTo(float xScale [, float yScale])
+ Scales this SWFFill by xScale in the x direction, yScale in the y, or both to
+xScale if only one arg
+void swffill_skewXTo(float xSkew)
+ Sets this SWFFill's x skew value to xSkew
+void swffill_skewYTo(float ySkew)
+ Sets this SWFFill's y skew value to ySkew
+int swffont_getAscent(void)
+ Returns the ascent of the font, or 0 if not available
+int swffont_getDescent(void)
+ Returns the descent of the font, or 0 if not available
+int swffont_getLeading(void)
+ Returns the leading of the font, or 0 if not available
+int swffont_getWidth(string)
+ Calculates the width of the given string in this font at full height
+class swffont_init(string filename)
+ Returns a new SWFFont object from given file
+void swfgradient_addEntry(float ratio, string r, string g, string b [, string a]
+ Adds given entry to the gradient
+class swfgradient_init(void)
+ Returns a new SWFGradient object
+SWFShape swfmorph_getShape1(void)
+ Return's this SWFMorph's start shape
+SWFShape swfmorph_getShape2(void)
+ Return's this SWFMorph's start shape
+object swfmorph_init(void)
+ Returns a new SWFMorph object
+int swfshape_addfill(int fill, int flags)
+ Returns a fill object, for use with swfshape_setleftfill and
+swfshape_setrightfill
+void swfshape_drawarc(int r, float startAngle, float endAngle)
+ Draws an arc of radius r centered at the current location, from angle startAngle
+to angle endAngle measured counterclockwise from 12 o'clock
+void swfshape_drawcircle(int r)
+ Draws a circle of radius r centered at the current location, in a
+counter-clockwise fashion
+void swfshape_drawcubic(float bx, float by, float cx, float cy, float dx, float dy)
+ Draws a cubic bezier curve using the current position and the three given points
+as control points
+void swfshape_drawcubic(float bx, float by, float cx, float cy, float dx, float dy)
+ Draws a cubic bezier curve using the current position and the three given points
+as control points
+void swfshape_drawcurve(float adx, float ady, float bdx, float bdy [, float cdx,
+float cdy])
+ Draws a curve from the current pen position (x, y) to the point (x+bdx, y+bdy)
+in the current line style, using point (x+adx, y+ady) as a control point or draws a
+cubic bezier to point (x+cdx, x+cdy) with control points (x+adx, y+ady) and (x+bdx,
+y+bdy)
+void swfshape_drawcurveto(float ax, float ay, float bx, float by [, float dx, float
+dy])
+ Draws a curve from the current pen position (x,y) to the point (bx, by) in the
+current line style, using point (ax, ay) as a control point. Or draws a cubic bezier
+to point (dx, dy) with control points (ax, ay) and (bx, by)
+void swfshape_drawglyph(SWFFont font, string character [, int size])
+ Draws the first character in the given string into the shape using the glyph
+definition from the given font
+void swfshape_drawline(float dx, float dy)
+ Draws a line from the current pen position (x, y) to the point (x+dx, y+dy) in
+the current line style
+void swfshape_drawlineto(float x, float y)
+ Draws a line from the current pen position to shape coordinates (x, y) in the
+current line style
+class swfshape_init(void)
+ Returns a new SWFShape object
+void swfshape_movepen(float x, float y)
+ Moves the pen from its current location by vector (x, y)
+void swfshape_movepento(float x, float y)
+ Moves the pen to shape coordinates (x, y)
+void swfshape_setleftfill(int fill)
+ Sets the left side fill style to fill
+void swfshape_setline(int width, int r, int g, int b [, int a])
+ Sets the current line style for this SWFShape
+void swfshape_setrightfill(int fill)
+ Sets the right side fill style to fill
+SWFDisplayItem swfsprite_add(SWFCharacter)
+ Adds the character to the sprite, returns a displayitem
+class swfsprite_init(void)
+ Returns a new SWFSprite object
+void swfsprite_nextFrame(void)
+ Moves the sprite to the next frame
+void swfsprite_remove(SWFDisplayItem)
+ Remove the named character from the sprite's display list
+void swfsprite_setFrames(int frames)
+ Sets the number of frames in this SWFSprite
+void swftext_addString(string text)
+ Writes the given text into this SWFText object at the current pen position,
+using the current font, height, spacing, and color
+float swftext_getAscent(void)
+ Returns the ascent of the current font at its current size, or 0 if not
+available
+float swftext_getDescent(void)
+ Returns the descent of the current font at its current size, or 0 if not
+available
+float swftext_getLeading(void)
+ Returns the leading of the current font at its current size, or 0 if not
+available
+float swftext_getWidth(string str)
+ Calculates the width of the given string in this text objects current font and
+size
+class swftext_init(void)
+ Returns new SWFText object
+void swftext_moveTo(float x, float y)
+ Moves this SWFText object's current pen position to (x, y) in text coordinates
+void swftext_setColor(int r, int g, int b [, int a])
+ Sets this SWFText object's current color to the given color
+void swftext_setFont(class font)
+ Sets this SWFText object's current font to given font
+void swftext_setHeight(float height)
+ Sets this SWFText object's current height to given height
+void swftext_setSpacing(float spacing)
+ Sets this SWFText object's current letterspacing to given spacing
+void swftextfield_addString(string str)
+ Adds the given string to this textfield
+void swftextfield_align(int alignment)
+ Sets the alignment of this textfield
+object swftextfield_init(void)
+ Returns a new SWFTextField object
+void swftextfield_setBounds(float width, float height)
+ Sets the width and height of this textfield
+void swftextfield_setColor(int r, int g, int b [, int a])
+ Sets the color of this textfield
+void swftextfield_setFont(int font)
+ Sets the font for this textfield
+void swftextfield_setHeight(float height)
+ Sets the font height of this textfield
+void swftextfield_setIndentation(float indentation)
+ Sets the indentation of the first line of this textfield
+void swftextfield_setLeftMargin(float)
+ Sets the left margin of this textfield
+void swftextfield_setLineSpacing(float space)
+ Sets the line spacing of this textfield
+void swftextfield_setMargins(float left, float right)
+ Sets both margins of this textfield
+void swftextfield_setName(string var_name)
+ Sets the variable name of this textfield
+void swftextfield_setRightMargin(float margin)
+ Sets the right margin of this textfield
# php4/ext/mnogosearch/php_mnogo.c
int udm_add_search_limit(int agent, int var, string val)
Add mnoGoSearch search restrictions
@@ -2534,292 +2725,292 @@
Sends an SQL query to MySQL, without fetching and buffering the result rows
# php4/ext/ncurses/ncurses_functions.c
int ncurses_addch(int ch)
- Add character at current position and advance cursor
+ Adds character at current position and advance cursor
int ncurses_addchnstr(string s, int n)
- Add attributed string with specified length at current position
+ Adds attributed string with specified length at current position
int ncurses_addchstr(string s)
- Add attributed string at current position
+ Adds attributed string at current position
int ncurses_addnstr(string s, int n)
- Add string with specified length at current position
+ Adds string with specified length at current position
int ncurses_addstr(string text)
- Output text at current position
+ Outputs text at current position
int ncurses_assume_default_colors(int fg, int bg)
- Define default colors for color 0
+ Defines default colors for color 0
int ncurses_attroff(int attributes)
- Turn off the given attributes
+ Turns off the given attributes
int ncurses_attron(int attributes)
- Turn on the given attributes
+ Turns on the given attributes
int ncurses_attrset(int attributes)
- Set given attributes
+ Sets given attributes
int ncurses_baudrate(void)
Returns baudrate of terminal
int ncurses_beep(void)
Let the terminal beep
int ncurses_bkgd(int attrchar)
- Set background property for terminal screen
+ Sets background property for terminal screen
void ncurses_bkgdset(int attrchar)
- Control screen background
+ Controls screen background
int ncurses_border(int left, int right, int top, int bottom, int tl_corner, int
tr_corner, int bl_corner, int br_corner)
- Draw a border around the screen using attributed characters
+ Draws a border around the screen using attributed characters
bool ncurses_can_change_color(void)
- Check if we can change terminals colors
+ Checks if we can change terminals colors
bool ncurses_cbreak(void)
- Switch of input buffering
+ Switches of input buffering
bool ncurses_clear(void)
- Clear screen
+ Clears screen
bool ncurses_clrtobot(void)
- Clear screen from current position to bottom
+ Clears screen from current position to bottom
bool ncurses_clrtoeol(void)
- Clear screen from current position to end of line
+ Clears screen from current position to end of line
int ncurses_color_set(int pair)
- Set fore- and background color
+ Sets fore- and background color
int ncurses_curs_set(int visibility)
- Set cursor state
+ Sets cursor state
bool ncurses_def_prog_mode(void)
-
+ Saves terminals (program) mode
bool ncurses_def_shell_mode(void)
-
+ Saves terminal (shell) mode
int ncurses_define_key(string definition, int keycode)
- Define a keycode
+ Defines a keycode
int ncurses_delay_output(int milliseconds)
- Delay output on terminal using padding characters
+ Delays output on terminal using padding characters
bool ncurses_delch(void)
- Delete character at current position, move rest of line left
+ Deletes character at current position, move rest of line left
bool ncurses_deleteln(void)
- Delete line at current position, move rest of screen up
+ Deletes line at current position, move rest of screen up
int ncurses_delwin(resource window)
- Delete a ncurses window
+ Deletes a ncurses window
bool ncurses_doupdate(void)
- Write all prepared refreshes to terminal
+ Writes all prepared refreshes to terminal
bool ncurses_echo(void)
- Activate keyboard input echo
+ Activates keyboard input echo
int ncurses_echochar(int character)
Single character output including refresh
int ncurses_end(void)
- Stop using ncurses, clean up the screen
+ Stops using ncurses, clean up the screen
bool ncurses_erase(void)
- Erease terminal screen
+ Erases terminal screen
string ncurses_erasechar(void)
Returns current erase character
int ncurses_filter(void)
bool ncurses_flash(void)
- Flash terminal screen (visual bell)
+ Flashes terminal screen (visual bell)
bool ncurses_flushinp(void)
- Flush keyboard input buffer
+ Flushes keyboard input buffer
int ncurses_getch(void)
- Read a character from keyboard
+ Reads a character from keyboard
bool ncurses_getmouse(array mevent)
Reads mouse event from queue
int ncurses_halfdelay(int tenth)
- Put terminal into halfdelay mode
+ Puts terminal into halfdelay mode
bool ncurses_has_colors(void)
- Check if terminal has colors
+ Checks if terminal has colors
bool ncurses_has_ic(void)
- Check for insert- and delete-capabilities
+ Checks for insert- and delete-capabilities
bool ncurses_has_il(void)
- Check for line insert- and delete-capabilities
+ Checks for line insert- and delete-capabilities
int ncurses_has_key(int keycode)
- Check for presence of a function key on terminal keyboard
+ Checks for presence of a function key on terminal keyboard
int ncurses_hline(int charattr, int n)
- Draw a horizontal line at current position using an attributed character and
max. n characters long
+ Draws a horizontal line at current position using an attributed character and
+max. n characters long
string ncurses_inch(void)
- Get character and attribute at current position
+ Gets character and attribute at current position
int ncurses_init(void)
- Initialize ncurses
+ Initializes ncurses
int ncurses_init_color(int color, int r, int g, int b)
- Set new RGB value for color
+ Sets new RGB value for color
int ncurses_init_pair(int pair, int fg, int bg)
- Allocate a color pair
+ Allocates a color pair
int ncurses_insch(int character)
- Insert character moving rest of line including character at current position
+ Inserts character moving rest of line including character at current position
int ncurses_insdelln(int count)
- Insert lines before current line scrolling down (negative numbers delete and
scroll up)
+ Inserts lines before current line scrolling down (negative numbers delete and
+scroll up)
bool ncurses_insertln(void)
- Insert a line, move rest of screen down
+ Inserts a line, move rest of screen down
int ncurses_insstr(string text)
- Insert string at current position, moving rest of line right
+ Inserts string at current position, moving rest of line right
int ncurses_instr(string buffer)
Reads string from terminal screen
bool ncurses_isendwin(void)
Ncurses is in endwin mode, normal screen output may be performed
int ncurses_keyok(int keycode, bool enable)
- Enable or disable a keycode
-int ncurses_keypad(resource WINDOW, bool bf)
- Turns keypad on or off
+ Enables or disable a keycode
+int ncurses_keypad(resource window, bool bf)
+ Turns keypad on or off
string ncurses_killchar(void)
Returns current line kill character
string ncurses_longname(void)
Returns terminal description
bool ncurses_mouse_trafo(int y, int x, bool toscreen)
- transform coordinates
+ Transforms coordinates
int ncurses_mouseinterval(int milliseconds)
- Set timeout for mouse button clicks
+ Sets timeout for mouse button clicks
int ncurses_mousemask(int newmask, int oldmask)
Returns and sets mouse options
int ncurses_move(int y, int x)
Moves output position
int ncurses_mvaddch(int y, int x, int c)
- Move current position and add character
+ Moves current position and add character
int ncurses_mvaddchnstr(int y, int x, string s, int n)
- Move position and add attrributed string with specified length
+ Moves position and add attrributed string with specified length
int ncurses_mvaddchstr(int y, int x, string s)
- Move position and add attributed string
+ Moves position and add attributed string
int ncurses_mvaddnstr(int y, int x, string s, int n)
- Move position and add string with specified length
+ Moves position and add string with specified length
int ncurses_mvaddstr(int y, int x, string s)
- Move position and add string
+ Moves position and add string
int ncurses_mvcur(int old_y,int old_x, int new_y, int new_x)
- Move cursor immediately
+ Moves cursor immediately
int ncurses_mvdelch(int y, int x)
- Move position and delete character, shift rest of line left
+ Moves position and delete character, shift rest of line left
int ncurses_mvgetch(int y, int x)
- Move position and get character at new position
+ Moves position and get character at new position
int ncurses_mvhline(int y, int x, int attrchar, int n)
- Set new position and draw a horizontal line using an attributed character and
max. n characters long
+ Sets new position and draw a horizontal line using an attributed character and
+max. n characters long
int ncurses_mvinch(int y, int x)
- Move position and get attributed character at new position
+ Moves position and get attributed character at new position
int ncurses_mvvline(int y, int x, int attrchar, int n)
- Set new position and draw a vertical line using an attributed character and max.
n characters long
+ Sets new position and draw a vertical line using an attributed character and
+max. n characters long
int ncurses_mvwaddstr(resource window, int y, int x, string text)
- Add string at new position in window
+ Adds string at new position in window
int ncurses_napms(int milliseconds)
Sleep
int ncurses_newwin(int rows, int cols, int y, int x)
- Create a new window
+ Creates a new window
bool ncurses_nl(void)
- Translate newline and carriage return / line feed
+ Translates newline and carriage return / line feed
bool ncurses_nocbreak(void)
- Switch terminal to cooked mode
+ Switches terminal to cooked mode
bool ncurses_noecho(void)
- Switch off keyboard input echo
+ Switches off keyboard input echo
bool ncurses_nonl(void)
Do not ranslate newline and carriage return / line feed
int ncurses_noqiflush(void)
Do not flush on signal characters
bool ncurses_noraw(void)
- Switch terminal out of raw mode
+ Switches terminal out of raw mode
int ncurses_putp(string text)
-
+ ???
int ncurses_qiflush(void)
- Flush on signal characters
+ Flushes on signal characters
bool ncurses_raw(void)
- Switch terminal into raw mode
+ Switches terminal into raw mode
int ncurses_refresh(int ch)
Refresh screen
bool ncurses_resetty(void)
- Restore saved terminal state
+ Restores saved terminal state
bool ncurses_savetty(void)
- Save terminal state
+ Saves terminal state
int ncurses_scr_dump(string filename)
- Dump screen content to file
+ Dumps screen content to file
int ncurses_scr_init(string filename)
- Initialize screen from file dump
+ Initializes screen from file dump
int ncurses_scr_restore(string filename)
- Restore screen from file dump
+ Restores screen from file dump
int ncurses_scr_set(string filename)
- Inherit screen from file dump
+ Inherits screen from file dump
int ncurses_scrl(int count)
- Scroll window content up or down without changing current position
+ Scrolls window content up or down without changing current position
bool ncurses_slk_attr(void)
-
+ Returns current soft label keys attribute
int ncurses_slk_attroff(int intarg)
-
+ ???
int ncurses_slk_attron(int intarg)
-
+ ???
int ncurses_slk_attrset(int intarg)
-
+ ???
bool ncurses_slk_clear(void)
bool ncurses_slk_clear(void)
-
+ Clears soft label keys from screen
int ncurses_slk_color(int intarg)
-
+ Sets color for soft label keys
int ncurses_slk_init(int intarg)
-
-bool ncurses_slk_init(int labelnr, string label, int format)
- sets function key labels
+ Inits soft label keys
bool ncurses_slk_noutrefresh(void)
-
+ Copies soft label keys to virtual screen
bool ncurses_slk_refresh(void)
-
+ Copies soft label keys to screen
bool ncurses_slk_restore(void)
-
+ Restores soft label keys
+bool ncurses_slk_set(int labelnr, string label, int format)
+ Sets function key labels
bool ncurses_slk_touch(void)
-
+ Forces output when ncurses_slk_noutrefresh is performed
int ncurses_standend(void)
- Stop using 'standout' attribute
+ Stops using 'standout' attribute
int ncurses_standout(void)
- Start using 'standout' attribute
+ Starts using 'standout' attribute
int ncurses_start_color(void)
- Start using colors
+ Starts using colors
bool ncurses_termattrs(void)
Returns a logical OR of all attribute flags supported by terminal
string ncurses_termname(void)
Returns terminal name
void ncurses_timeout(int millisec)
- Set timeout for special key sequences
+ Sets timeout for special key sequences
int ncurses_typeahead(int fd)
- Specify different filedescriptor for typeahead checking
+ Specifys different filedescriptor for typeahead checking
int ncurses_ungetch(int keycode)
- Put a character back into the input stream
+ Puts a character back into the input stream
int ncurses_ungetmouse(array mevent)
- pushes mouse event to queue
+ Pushes mouse event to queue
bool ncurses_use_default_colors(void)
- Assign terminal default colors to color id -1
+ Assigns terminal default colors to color id -1
void ncurses_use_env(bool flag)
- Control use of environment information about terminal size
+ Controls use of environment information about terminal size
int ncurses_use_extended_names(bool flag)
- Control use of extended names in terminfo descriptions
+ Controls use of extended names in terminfo descriptions
int ncurses_vidattr(int intarg)
-
+ ???
int ncurses_vline(int charattr, int n)
- Draw a vertical line at current position using an attributed character and max.
n characters long
-int ncurses_waddstr(resource WINDOW, string str, [int n])
- Outputs text at current postion in window
-int ncurses_wclear(resource WINDOW)
- Clears window
-int ncurses_wcolor_set(resource WINDOW, int color_pair)
- Sets windows color pairings
-int ncurses_wgetch(resource WINDOW)
- Reads a character from keyboard (window)
-bool ncurses_wmouse_trafo(resource WINDOW, int y, int x, bool toscreen)
- Transforms window/stdscr coordinates
-int ncurses_wmove(resource WINDOW, int y, int x)
- Moves windows output position
-int ncurses_wnoutrefresh(resource WINDOW)
- Copies window to virtual screen
+ Draws a vertical line at current position using an attributed character and max.
+n characters long
+int ncurses_waddstr(resource window, string str [, int n])
+ Outputs text at current postion in window
+int ncurses_wclear(resource window)
+ Clears window
+int ncurses_wcolor_set(resource window, int color_pair)
+ Sets windows color pairings
+int ncurses_wgetch(resource window)
+ Reads a character from keyboard (window)
+bool ncurses_wmouse_trafo(resource window, int y, int x, bool toscreen)
+ Transforms window/stdscr coordinates
+int ncurses_wmove(resource window, int y, int x)
+ Moves windows output position
+int ncurses_wnoutrefresh(resource window)
+ Copies window to virtual screen
int ncurses_wrefresh(resource window)
- Refresh window on terminal screen
+ Refreshes window on terminal screen
# php4/ext/notes/php_notes.c
array notes_body(string server, string mailbox, int msg_number)
- Open the message msg_number in the specified mailbox on the specified server
(leave server blank for local) and returns an array of body text lines.
-string notes_copy_db(string from_database_name, string to_database_name [, title])
- Create a note using form form_name
+ Opens the message msg_number in the specified mailbox on the specified server
+(leave server blank for local) and returns an array of body text lines
+string notes_copy_db(string from_database_name, string to_database_name [, string
+title])
+ Creates a note using form form_name
bool notes_create_db(string database_name)
- Create a Lotus Notes database
+ Creates a Lotus Notes database
string notes_create_note(string database_name, string form_name)
- Create a note using form form_name
+ Creates a note using form form_name
bool notes_drop_db(string database_name)
- Drop a Lotus Notes database
-bool notes_find_note(string database_name, string name [, string type] )
- Returns a note id found in database_name. Specify the name of the note. Leaving
type blank will default to all, otherwise specify: FORM
VIEW FILTER FIELD
+ Drops a Lotus Notes database
+bool notes_find_note(string database_name, string name [, string type])
+ Returns a note id found in database_name
object notes_header_info(string server, string mailbox, int msg_number)
- Open the message msg_number in the specified mailbox on the specified server
(leave server blank for local). Elements:
originator (Contains orignal message sender. Relevant only when forwarded messages)
to cc bcc from date
status (blank if delivered, otherwise contains failure reason)
priority H: High N: Normal L: Low receipt 1: Yes 0: No
subject
+ Opens the message msg_number in the specified mailbox on the specified server
+(leave server blank for local)
bool notes_list_msgs(string db)
-
+ ???
string notes_mark_read(string database_name, string user_name, string note_id)
- Mark a note_id as read for the User user_name Note: user_name must be fully
distinguished user name
+ Marks a note_id as read for the User user_name. Note: user_name must be fully
+distinguished user name
string notes_mark_unread(string database_name, string user_name, string note_id)
- Mark a note_id as unread for the User user_name Note: user_name must be
fully distinguished user name
-bool notes_nav_create(string database_name, string name )
- Create a navigator name, in database_name
-string notes_search(string database_name, string keywords )
- Find notes that match keywords in database_name The note(s) that are
returned must be converted to base 16 Example base_convert( $note_id, "10", "16" )
+ Marks a note_id as unread for the User user_name. Note: user_name must be fully
+distinguished user name
+bool notes_nav_create(string database_name, string name)
+ Creates a navigator name, in database_name
+string notes_search(string database_name, string keywords)
+ Finds notes that match keywords in database_name. The note(s) that are returned
+must be converted to base 16. Example base_convert($note_id, "10", "16")
string notes_unread(string database_name, string user_name)
- Returns the unread note id's for the current User user_name Note: user_name
must be fully distinguished user name
+ Returns the unread note id's for the current User user_name. Note: user_name
+must be fully distinguished user name
string notes_version(string database_name)
- Get the version Lotus Notes
+ Gets the Lotus Notes version
# php4/ext/oci8/oci8.c
int ocibindbyname(int stmt, string name, mixed &var, int maxlength [, int type])
Bind a PHP variable to an Oracle placeholder by name
@@ -3009,7 +3200,7 @@
bool velocis_commit(int index)
-long velocis_connect(string server, string user, sting pass)
+int velocis_connect(string server, string user, sting pass)
int velocis_exec(int index, string exec_str)
@@ -3183,7 +3374,7 @@
int ovrimos_setoption(int conn_id|result_id, int which, int option, int value)
Sets connection or statement options
# php4/ext/pcntl/pcntl.c
-bool pcntl_exec(string path, [array args], [array envs])
+bool pcntl_exec(string path [, array args [, array envs]])
Executes specified program in current process space as defined by exec(2)
int pcntl_fork(void)
Forks the currently running process following the same behavior as the UNIX
fork() system call
@@ -4069,9 +4260,9 @@
string getprotobynumber(int proto)
Returns protocol name associated with protocol number proto
int getservbyname(string service, string protocol)
- Returns port associated with service. Protocol must be "tcp" or "udp".
+ Returns port associated with service. Protocol must be "tcp" or "udp"
string getservbyport(int port, string protocol)
- Returns service name associated with port. Protocol must be "tcp" or "udp".
+ Returns service name associated with port. Protocol must be "tcp" or "udp"
string gettype(mixed var)
Returns the type of the variable
bool highlight_file(string file_name)
@@ -4099,7 +4290,7 @@
bool is_bool(mixed var)
Returns true if variable is a boolean
bool is_callable(mixed var [, bool syntax_only [, string callable_name]])
-
+ ???
bool is_float(mixed var)
Returns true if variable is float point
bool is_long(mixed var)
@@ -4180,21 +4371,21 @@
int time(void)
Return current UNIX timestamp
# php4/ext/standard/dir.c
-int chdir(string directory)
+bool chdir(string directory)
Change the current directory
-int chroot(string directory)
+bool chroot(string directory)
Change root directory
-void closedir([int dir_handle])
+void closedir([resource dir_handle])
Close directory connection identified by the dir_handle
class dir(string directory)
Directory class with properties, handle and class and methods read, rewind and
close
-string getcwd(void)
+mixed getcwd(void)
Gets the current directory
-int opendir(string path)
+mixed opendir(string path)
Open a directory and return a dir_handle
-string readdir([int dir_handle])
+string readdir([resource dir_handle])
Read directory entry from dir_handle
-void rewinddir([int dir_handle])
+void rewinddir([resource dir_handle])
Rewind dir_handle back to the start
# php4/ext/standard/dl.c
int dl(string extension_filename)
@@ -4426,23 +4617,23 @@
Send an email message
# php4/ext/standard/math.c
int abs(int number)
- Return the absolute value of the number
+ Return the absolute value of the number
float acos(float number)
Return the arc cosine of the number in radians
float acosh(float number)
- Returns the inverse hyperbolic cosine of the number, i.e. the value whose
hyperbolic cosine is number
+ Returns the inverse hyperbolic cosine of the number, i.e. the value whose
+hyperbolic cosine is number
float asin(float number)
Returns the arc sine of the number in radians
float asinh(float number)
- Returns the inverse hyperbolic sine of the number, i.e. the value whose
hyperbolic sine is number
+ Returns the inverse hyperbolic sine of the number, i.e. the value whose
+hyperbolic sine is number
float atan(float number)
Returns the arc tangent of the number in radians
float atan2(float y, float x)
Returns the arc tangent of y/x, with the resulting quadrant determined by the
signs of y and x
float atanh(float number)
- Returns the inverse hyperbolic tangent of the number, i.e. the value whose
hyperbolic tangent is number
+ Returns the inverse hyperbolic tangent of the number, i.e. the value whose
+hyperbolic tangent is number
string base_convert(string number, int frombase, int tobase)
- Converts a number in a string from any base <= 36 to any base <= 36.
+ Converts a number in a string from any base <= 36 to any base <= 36
int bindec(string binary_number)
Returns the decimal equivalent of the binary number
float ceil(float number)
@@ -4450,7 +4641,7 @@
float cos(float number)
Returns the cosine of the number in radians
float cosh(float number)
- Returns the hyperbolic cosine of the number, defined as (exp(number) +
exp(-number))/2
+ Returns the hyperbolic cosine of the number, defined as (exp(number) +
+exp(-number))/2
string decbin(int decimal_number)
Returns a string containing a binary representation of the number
string dechex(int decimal_number)
@@ -4462,19 +4653,25 @@
float exp(float number)
Returns e raised to the power of the number
float expm1(float number)
- Returns exp(number) - 1, computed in a way that accurate even when the
value of number is close to zero WARNING: this function is expermental: it could
change its name or disappear in the next version of PHP!
+ Returns exp(number) - 1, computed in a way that accurate even when the value of
+number is close to zero
+bool finite(double val)
+ Returns whether double is finite
float floor(float number)
Returns the next lowest integer value from the number
int hexdec(string hexadecimal_number)
Returns the decimal equivalent of the hexadecimal number
float hypot(float num1, float num2)
- Returns sqrt( num1*num1 + num2*num2) WARNING: this function is expermental:
it could change its name or disappear in the next version of PHP!
+ Returns sqrt(num1*num1 + num2*num2)
+bool isinf(double val)
+ Returns whether double is infinite
+bool isnan(double val)
+ Returns whether double is not a number
float log(float number)
Returns the natural logarithm of the number
float log10(float number)
Returns the base-10 logarithm of the number
float log1p(float number)
- Returns log(1 + number), computed in a way that accurate even when the
value of number is close to zero WARNING: this function is expermental: it could
change its name or disappear in the next version of PHP!
+ Returns log(1 + number), computed in a way that accurate even when the value of
+number is close to zero
string number_format(float number [, int num_decimal_places [, string dec_seperator,
string thousands_seperator]])
Formats a number with grouped thousands
int octdec(string octal_number)
@@ -4482,21 +4679,21 @@
float pi(void)
Returns an approximation of pi
number pow(number base, number exponent)
- Returns base raised to the power of exponent. Returns integer result when
possible.
+ Returns base raised to the power of exponent. Returns integer result when
+possible
float rad2deg(float number)
Converts the radian number to the equivalent number in degrees
float round(float number [, int precision])
- Returns the number rounded to specified precision.
+ Returns the number rounded to specified precision
float sin(float number)
Returns the sine of the number in radians
float sinh(float number)
- Returns the hyperbolic sine of the number, defined as (exp(number) -
exp(-number))/2
+ Returns the hyperbolic sine of the number, defined as (exp(number) -
+exp(-number))/2
float sqrt(float number)
Returns the square root of the number
float tan(float number)
Returns the tangent of the number in radians
float tanh(float number)
- Returns the hyperbolic tangent of the number, defined as
sinh(number)/cosh(number)
+ Returns the hyperbolic tangent of the number, defined as
+sinh(number)/cosh(number)
# php4/ext/standard/md5.c
string md5(string str)
Calculate the md5 hash of a string