Index: phpdoc/funcparse.awk diff -u phpdoc/funcparse.awk:1.8 phpdoc/funcparse.awk:1.9 --- phpdoc/funcparse.awk:1.8 Fri Dec 15 03:37:15 2000 +++ phpdoc/funcparse.awk Wed Dec 27 07:03:43 2000 @@ -14,7 +14,7 @@ /^[[:space:]]*PHP_FE/ { if(parse) { print $2; } } /^[[:space:]]*PHP_FALIAS/ { if(parse) { print $2; } } /^[[:space:]]*PHP_NAMED_FE/ { if(parse) { print $2; } } -/^[[:space:]]*PHP_STATIC_FE/ { if(parse) { print $3; } } +/^[[:space:]]*PHP_STATIC_FE/ { if(parse) { print $2; } } /^[[:space:]]*ZEND_FE/ { if(parse) { print $2; } } /^[[:space:]]*cybercash_functions/ { if (parse) { print $2; } } /^[[:space:]]*UODBC_FE/ { if(parse) { print "odbc_"$2; } } Index: phpdoc/funclist.txt diff -u phpdoc/funclist.txt:1.4 phpdoc/funclist.txt:1.5 --- phpdoc/funclist.txt:1.4 Wed Dec 27 06:21:26 2000 +++ phpdoc/funclist.txt Wed Dec 27 07:03:43 2000 @@ -829,6 +829,13 @@ + + + + + + + abs acos addcslashes @@ -945,16 +952,13 @@ flock floor flush -fopen fpassthru fputs fread fscanf fseek fsockopen -fstat ftell -ftruncate fwrite get_browser get_cfg_var @@ -1048,7 +1052,6 @@ log log10 long2ip -lstat ltrim magic_quotes_runtime mail @@ -1108,7 +1111,6 @@ range rawurldecode rawurlencode -readdir readfile readlink readlink @@ -1152,7 +1154,6 @@ sqrt srand sscanf -stat str_pad str_repeat str_replace @@ -1188,7 +1189,6 @@ tan tempnam time -tmpfile touch trim uasort Index: phpdoc/funcsummary.txt diff -u phpdoc/funcsummary.txt:1.3 phpdoc/funcsummary.txt:1.4 --- phpdoc/funcsummary.txt:1.3 Wed Dec 27 06:21:26 2000 +++ phpdoc/funcsummary.txt Wed Dec 27 07:03:43 2000 @@ -1,3738 +1,3735 @@ -# beta/php4/core/main.c -void set_time_limit(int seconds) - Sets the maximum time a script can run * # beta/php4/main/main.c void set_time_limit(int seconds) - Sets the maximum time a script can run * + Sets the maximum time a script can run # beta/php4/sapi/apache/php_apache.c class apache_lookup_uri(string URI) - Perform a partial request of the given URI to obtain information about it * + Perform a partial request of the given URI to obtain information about it string apache_note(string note_name [, string note_value]) - Get and set Apache request notes * + Get and set Apache request notes string child_terminate() - Get and set Apache request notes * + Get and set Apache request notes array getallheaders(void) - Fetch all HTTP request headers * + Fetch all HTTP request headers int virtual(string filename) - Perform an Apache sub-request * + Perform an Apache sub-request # beta/php4/ext/aspell/aspell.c int aspell_check(aspell int, string word) - Return if word is valid * + Return if word is valid int aspell_check_raw(aspell int, string word) - Return if word is valid, ignoring case or trying to trim it in any way * + Return if word is valid, ignoring case or trying to trim it in any way int aspell_new(string master [, string personal]) - Load a dictionary * + Load a dictionary array aspell_suggest(aspell int, string word) - Return array of Suggestions * + Return array of Suggestions # beta/php4/ext/bcmath/bcmath.c string bcadd(string left_operand, string right_operand [, int scale]) - Returns the sum of two arbitrary precision numbers * + Returns the sum of two arbitrary precision numbers string bccomp(string left_operand, string right_operand [, int scale]) - Compares two arbitrary precision numbers * + Compares two arbitrary precision numbers string bcdiv(string left_operand, string right_operand [, int scale]) - Returns the quotient of two arbitrary precision numbers (division) * + Returns the quotient of two arbitrary precision numbers (division) string bcmod(string left_operand, string right_operand) - Returns the modulus of the two arbitrary precision operands * + Returns the modulus of the two arbitrary precision operands string bcmul(string left_operand, string right_operand [, int scale]) - Returns the multiplication of two arbitrary precision numbers * + Returns the multiplication of two arbitrary precision numbers string bcpow(string x, string y [, int scale]) - Returns the value of an arbitrary precision number raised to the power of another * + Returns the value of an arbitrary precision number raised to the power of another string bcscale(int scale) - Sets default scale parameter for all bc math functions * + Sets default scale parameter for all bc math functions string bcsqrt(string operand [, int scale]) - Returns the square root of an arbitray precision number * + Returns the square root of an arbitray precision number string bcsub(string left_operand, string right_operand [, int scale]) - Returns the difference between two arbitrary precision numbers * + Returns the difference between two arbitrary precision numbers # beta/php4/ext/com/COM.c mixed com_invoke(int module, string handler_name [, mixed arg [, ...]]) - Invokes a COM module * + Invokes a COM module int com_load(string module_name) - Loads a COM module * + Loads a COM module mixed com_propget(int module, string property_name) - Gets properties from a COM module * + Gets properties from a COM module bool com_propput(int module, string property_name, mixed value) - Puts the properties for a module * + Puts the properties for a module # beta/php4/ext/db/db.c string dblist(void) - Describes the dbm-compatible library being used * + Describes the dbm-compatible library being used bool dbmclose(int dbm_identifier) - Closes a dbm database * + Closes a dbm database int dbmdelete(int dbm_identifier, string key) - Deletes the value for a key from a dbm database * + Deletes the value for a key from a dbm database int dbmexists(int dbm_identifier, string key) - Tells if a value exists for a key in a dbm database * + Tells if a value exists for a key in a dbm database string dbmfetch(int dbm_identifier, string key) - Fetches a value for a key from a dbm database * + Fetches a value for a key from a dbm database string dbmfirstkey(int dbm_identifier) - Retrieves the first key from a dbm database * + Retrieves the first key from a dbm database int dbminsert(int dbm_identifier, string key, string value) - Inserts a value for a key in a dbm database * + Inserts a value for a key in a dbm database string dbmnextkey(int dbm_identifier, string key) - Retrieves the next key from a dbm database * + Retrieves the next key from a dbm database int dbmopen(string filename, string mode) - Opens a dbm database * + Opens a dbm database int dbmreplace(int dbm_identifier, string key, string value) - Replaces the value for a key in a dbm database * + Replaces the value for a key in a dbm database # beta/php4/ext/dbase/dbase.c bool dbase_add_record(int identifier, array data) - Adds a record to the database * + Adds a record to the database bool dbase_close(int identifier) - Closes an open dBase-format database file * + Closes an open dBase-format database file bool dbase_create(string filename, array fields) - Creates a new dBase-format database file * + Creates a new dBase-format database file bool dbase_delete_record(int identifier, int record) - Marks a record to be deleted * + Marks a record to be deleted array dbase_get_record(int identifier, int record) - Returns an array representing a record from the database * + Returns an array representing a record from the database array dbase_get_record_with_names(int identifier, int record) - Returns an associative array representing a record from the database * + Returns an associative array representing a record from the database int dbase_numfields(int identifier) - Returns the number of fields (columns) in the database * + Returns the number of fields (columns) in the database int dbase_numrecords(int identifier) - Returns the number of records in the database * + Returns the number of records in the database int dbase_open(string name, int mode) - Opens a dBase-format database file * + Opens a dBase-format database file bool dbase_pack(int identifier) - Packs the database (deletes records marked for deletion) * + Packs the database (deletes records marked for deletion) bool dbase_replace_record(int identifier, array data, int recnum) - Replaces a record to the database * + Replaces a record to the database # beta/php4/ext/fdf/fdf.c boolean fdf_add_template(int fdfdoc, int newpage, string filename, string template, int rename) - Adds a template to the FDF * + Adds a template to the FDF boolean fdf_close(int fdfdoc) - Closes the FDF document * + Closes the FDF document int fdf_create(void) - Creates a new FDF document * + Creates a new FDF document string fdf_get_file(int fdfdoc) - Gets the value in the /F key * + Gets the value in the /F key string fdf_get_status(int fdfdoc) - Gets the value in the /Status key * + Gets the value in the /Status key string fdf_get_value(int fdfdoc, string fieldname) - Gets the value of a field as string * + Gets the value of a field as string string fdf_next_field_name(int fdfdoc [, string fieldname]) - Gets the name of the next field name or the first field name * + Gets the name of the next field name or the first field name int fdf_open(string filename) - Opens a new FDF document * + Opens a new FDF document boolean fdf_save(int fdfdoc, string filename) - Writes out an FDF file * + Writes out an FDF file boolean fdf_set_ap(int fdfdoc, string fieldname, int face, string filename, int pagenr) - Sets the value of a field * + Sets the value of a field boolean fdf_set_file(int fdfdoc, string filename) - Sets the value of the FDF's /F key * + Sets the value of the FDF's /F key boolean fdf_set_flags(int fdfdoc, string fieldname, int whichflags, int newflags) - Modifies a flag for a field in the FDF * + Modifies a flag for a field in the FDF boolean fdf_set_javascript_action(int fdfdoc, string fieldname, int whichtrigger, string script) - Sets the javascript action for a field in the FDF * + Sets the javascript action for a field in the FDF boolean fdf_set_opt(int fdfdoc, string fieldname, int element, string value, string name) - Sets a value in the opt array for a field in the FDF * + Sets a value in the opt array for a field in the FDF boolean fdf_set_status(int fdfdoc, string status) - Sets the value in the /Status key * + Sets the value in the /Status key booelan fdf_set_submit_form_action(int fdfdoc, string fieldname, int whichtrigger, string url, int flags) - Sets the submit form action for a field in the FDF * + Sets the submit form action for a field in the FDF boolean fdf_set_value(int fdfdoc, string fieldname, string value, int isname) - Sets the value of a field * + Sets the value of a field # beta/php4/ext/filepro/filepro.c bool filepro(string directory) - Read and verify the map file * + Read and verify the map file int filepro_fieldcount(void) - Find out how many fields are in a filePro database * + Find out how many fields are in a filePro database string filepro_fieldname(int fieldnumber) - Gets the name of a field * + Gets the name of a field string filepro_fieldtype(int field_number) - Gets the type of a field * + Gets the type of a field int filepro_fieldwidth(int field_number) - Gets the width of a field * + Gets the width of a field string filepro_retrieve(int row_number, int field_number) - Retrieves data from a filePro database * + Retrieves data from a filePro database int filepro_rowcount(void) - Find out how many rows are in a filePro database * + Find out how many rows are in a filePro database # beta/php4/ext/gd/gd.c int imagearc(int im, int cx, int cy, int w, int h, int s, int e, int col) - Draw a partial ellipse * + Draw a partial ellipse int imagechar(int im, int font, int x, int y, string c, int col) - Draw a character * + Draw a character int imagecharup(int im, int font, int x, int y, string c, int col) - Draw a character rotated 90 degrees counter-clockwise * + Draw a character rotated 90 degrees counter-clockwise int imagecolorallocate(int im, int red, int green, int blue) - Allocate a color for an image * + Allocate a color for an image int imagecolorat(int im, int x, int y) - Get the index of the color of a pixel * + Get the index of the color of a pixel int imagecolorclosest(int im, int red, int green, int blue) - Get the index of the closest color to the specified color * + Get the index of the closest color to the specified color int imagecolorclosesthwb(int im, int red, int green, int blue) - Get the index of the color which has the hue, white and blackness nearest to the given color * + Get the index of the color which has the hue, white and blackness nearest to the given color int imagecolordeallocate(int im, int index) - De-allocate a color for an image * + De-allocate a color for an image int imagecolorexact(int im, int red, int green, int blue) - Get the index of the specified color * + Get the index of the specified color int imagecolorresolve(int im, int red, int green, int blue) - Get the index of the specified color or its closest possible alternative * + Get the index of the specified color or its closest possible alternative int imagecolorset(int im, int col, int red, int green, int blue) - Set the color for the specified palette index * + Set the color for the specified palette index array imagecolorsforindex(int im, int col) - Get the colors for an index * + Get the colors for an index int imagecolorstotal(int im) - Find out the number of colors in an image's palette * + Find out the number of colors in an image's palette int imagecolortransparent(int im [, int col]) - Define a color as transparent * + Define a color as transparent int imagecopy(int dst_im, int src_im, int dst_x, int dst_y, int src_x, int src_y, int src_w, int src_h) - Copy part of an image * + Copy part of an image int imagecopymerge(int src_im, int dst_im, int dst_x, int dst_y, int src_x, int src_y, int src_w, int src_h, int pct) - Merge one part of an image with another * + Merge one part of an image with another int imagecopyresized(int dst_im, int src_im, int dst_x, int dst_y, int src_x, int src_y, int dst_w, int dst_h, int src_w, int src_h) - Copy and resize part of an image * + Copy and resize part of an image int imagecreate(int x_size, int y_size) - Create a new image * + Create a new image int imagecreatefromgif(string filename) - Create a new image from GIF file or URL * + Create a new image from GIF file or URL int imagecreatefromjpeg(string filename) - Create a new image from JPEG file or URL * + Create a new image from JPEG file or URL int imagecreatefrompng(string filename) - Create a new image from PNG file or URL * + Create a new image from PNG file or URL int imagecreatefromstring(string image) - Create a new image from the image stream in the string * + Create a new image from the image stream in the string int imagecreatefromwbmp(string filename) - Create a new image from WBMP file or URL * + Create a new image from WBMP file or URL int imagecreatefromxbm(string filename) - Create a new image from XBM file or URL * + Create a new image from XBM file or URL int imagedashedline(int im, int x1, int y1, int x2, int y2, int col) - Draw a dashed line * + Draw a dashed line int imagedestroy(int im) - Destroy an image * + Destroy an image int imagefill(int im, int x, int y, int col) - Flood fill * + Flood fill int imagefilledpolygon(int im, array point, int num_points, int col) - Draw a filled polygon * + Draw a filled polygon int imagefilledrectangle(int im, int x1, int y1, int x2, int y2, int col) - Draw a filled rectangle * + Draw a filled rectangle int imagefilltoborder(int im, int x, int y, int border, int col) - Flood fill to specific color * + Flood fill to specific color int imagefontheight(int font) - Get font height * + Get font height int imagefontwidth(int font) - Get font width * + Get font width int imagegammacorrect(int im, double inputgamma, double outputgamma) - Apply a gamma correction to a GD image * + Apply a gamma correction to a GD image int imagegif(int im [, string filename]) - Output GIF image to browser or file * + Output GIF image to browser or file int imageinterlace(int im [, int interlace]) - Enable or disable interlace * + Enable or disable interlace int imagejpeg(int im [, string filename [, int quality]]) - Output JPEG image to browser or file * + Output JPEG image to browser or file int imageline(int im, int x1, int y1, int x2, int y2, int col) - Draw a line * + Draw a line int imageloadfont(string filename) - Load a new font * + Load a new font int imagepalettecopy(int dst, int src) - Copy the palette from the src image onto the dst image * + Copy the palette from the src image onto the dst image int imagepng(int im [, string filename]) - Output PNG image to browser or file * + Output PNG image to browser or file int imagepolygon(int im, array point, int num_points, int col) - Draw a polygon * + Draw a polygon array imagepsbbox(string text, int font, int size [, int space, int tightness, int angle]) - Return the bounding box needed by a string if rasterized * + Return the bounding box needed by a string if rasterized bool imagepsencodefont(int font_index, string filename) - To change a fonts character encoding vector * + To change a fonts character encoding vector bool imagepsextendfont(int font_index, double extend) - Extend or or condense (if extend < 1) a font * + Extend or or condense (if extend < 1) a font bool imagepsfreefont(int font_index) - Free memory used by a font * + Free memory used by a font int imagepsloadfont(string pathname) - Load a new font from specified file * + Load a new font from specified file bool imagepsslantfont(int font_index, double slant) - Slant a font * + Slant a font array imagepstext(int image, string text, int font, int size, int xcoord, int ycoord [, int space, int tightness, double angle, int antialias]) - Rasterize a string over an image * + Rasterize a string over an image int imagerectangle(int im, int x1, int y1, int x2, int y2, int col) - Draw a rectangle * + Draw a rectangle int imagesetpixel(int im, int x, int y, int col) - Set a single pixel * + Set a single pixel int imagestring(int im, int font, int x, int y, string str, int col) - Draw a string horizontally * + Draw a string horizontally int imagestringup(int im, int font, int x, int y, string str, int col) - Draw a string vertically - rotated 90 degrees counter-clockwise * + Draw a string vertically - rotated 90 degrees counter-clockwise int imagesx(int im) - Get image width * + Get image width int imagesy(int im) - Get image height * + Get image height array imagettfbbox(int size, int angle, string font_file, string text) - Give the bounding box of a text using TrueType fonts * + Give the bounding box of a text using TrueType fonts array imagettftext(int im, int size, int angle, int x, int y, int col, string font_file, string text) - Write text to the image using a TrueType font * + Write text to the image using a TrueType font int imagetypes(void) - Return the types of images supported in a bitfield - 1=gif, 2=jpeg, 4=png, 8=wbmp * + Return the types of images supported in a bitfield - 1=gif, 2=jpeg, 4=png, 8=wbmp int imagewbmp(int im [, string filename]) - Output WBMP image to browser or file * + Output WBMP image to browser or file # beta/php4/ext/gd/gdt1.c array imagepsbbox(string text, int font, int size [, int space, int tightness, int angle]) - Return the bounding box needed by a string if rasterized * + Return the bounding box needed by a string if rasterized bool imagepsencodefont(int font_index, string filename) - To change a fonts character encoding vector * + To change a fonts character encoding vector bool imagepsextendfont(int font_index, double extend) - Extend or or condense (if extend < 1) a font * + Extend or or condense (if extend < 1) a font bool imagepsfreefont(int font_index) - Free memory used by a font * + Free memory used by a font int imagepsloadfont(string pathname) - Load a new font from specified file * + Load a new font from specified file bool imagepsslantfont(int font_index, double slant) - Slant a font * + Slant a font array imagepstext(int image, string text, int font, int size, int xcoord, int ycoord [, int space, int tightness, double angle, int antialias]) - Rasterize a string over an image * + Rasterize a string over an image # beta/php4/ext/gettext/gettext.c string bindtextdomain(string domain_name, string dir) - Bind to the text domain domain_name, looking for translations in dir. Returns the current domain * + Bind to the text domain domain_name, looking for translations in dir. Returns the current domain string dcgettext(string domain_name, string msgid, long category) - Return the translation of msgid for domain_name and category, or msgid unaltered if a translation does not exist * + Return the translation of msgid for domain_name and category, or msgid unaltered if a translation does not exist string dgettext(string domain_name, string msgid) - Return the translation of msgid for domain_name, or msgid unaltered if a translation does not exist * + Return the translation of msgid for domain_name, or msgid unaltered if a translation does not exist string gettext(string msgid) - Return the translation of msgid for the current domain, or msgid unaltered if a translation does not exist * + Return the translation of msgid for the current domain, or msgid unaltered if a translation does not exist string textdomain(string domain) - Set the textdomain to "domain". Returns the current domain * + Set the textdomain to "domain". Returns the current domain # beta/php4/ext/hyperwave/hw.c string hw_array2objrec(array objarr) - Returns object record of object array * + Returns object record of object array void hw_changeobject(int link, int objid, array attributes) - Changes attributes of an object (obsolete) * + Changes attributes of an object (obsolete) array hw_children(int link, int objid) - Returns array of children object ids * + Returns array of children object ids array hw_childrenobj(int link, int objid) - Returns array of children object records * + Returns array of children object records void hw_close(int link) - Close connection to Hyperwave server * + Close connection to Hyperwave server int hw_connect(string host, int port [string username [, string password]]) - Connect to the Hyperwave server * + Connect to the Hyperwave server void hw_connection_info(int link) - Prints information about the connection to Hyperwave server * + Prints information about the connection to Hyperwave server void hw_cp(int link, array objrec, int dest) - Copies object * + Copies object void hw_deleteobject(int link, int objid) - Deletes object * + Deletes object int hw_docbyanchor(int link, int anchorid) - Returns objid of document belonging to anchorid * + Returns objid of document belonging to anchorid array hw_docbyanchorobj(int link, int anchorid) - Returns object record of document belonging to anchorid * + Returns object record of document belonging to anchorid string hw_document_attributes(hwdoc doc) - Returns object record of document * + Returns object record of document string hw_document_bodytag(hwdoc doc [, string prefix]) - Return bodytag prefixed by prefix * + Return bodytag prefixed by prefix string hw_document_content(hwdoc doc) - Returns content of document * + Returns content of document int hw_document_setcontent(hwdoc doc, string content) - Sets/replaces content of document * + Sets/replaces content of document int hw_document_size(hwdoc doc) - Returns size of document * + Returns size of document string hw_documentattributes(hwdoc doc) - An alias for hw_document_attributes * + An alias for hw_document_attributes string hw_documentbodytag(hwdoc doc [, string prefix]) - An alias for hw_document_bodytag * + An alias for hw_document_bodytag int hw_documentsize(hwdoc doc) - An alias for hw_document_size * + An alias for hw_document_size string hw_dummy(int link, int id, int msgid) - Hyperwave dummy function * + Hyperwave dummy function void hw_edittext(int link, hwdoc doc) - Modifies text document * + Modifies text document int hw_error(int link) - Returns last error number * + Returns last error number string hw_errormsg(int link) - Returns last error message * + Returns last error message void hw_free_document(hwdoc doc) - Frees memory of document * + Frees memory of document array hw_getanchors(int link, int objid) - Return all anchors of object * + Return all anchors of object array hw_getanchorsobj(int link, int objid) - Return all object records of anchors of object * + Return all object records of anchors of object string hw_getandlock(int link, int objid) - Returns object record and locks object * + Returns object record and locks object hwdoc hw_getcgi(int link, int objid) - Returns the output of a CGI script * + Returns the output of a CGI script array hw_getchildcoll(int link, int objid) - Returns array of child collection object ids * + Returns array of child collection object ids array hw_getchildcollobj(int link, int objid) - Returns array of child collection object records * + Returns array of child collection object records array hw_getchilddoccoll(int link, int objid) - Returns all children ids which are documents * + Returns all children ids which are documents array hw_getchilddoccollobj(int link, int objid) - Returns all children object records which are documents * + Returns all children object records which are documents string hw_getobject(int link, int objid [, string linkroot]) - Returns object record * + Returns object record array hw_getobjectbyftquery(int link, string query, int maxhits) - Search for query as fulltext and return maxhits objids * + Search for query as fulltext and return maxhits objids array hw_getobjectbyftquerycoll(int link, int collid, string query, int maxhits) - Search for fulltext query in collection and return maxhits objids * + Search for fulltext query in collection and return maxhits objids array hw_getobjectbyftquerycollobj(int link, int collid, string query, int maxhits) - Search for fulltext query in collection and return maxhits object records * + Search for fulltext query in collection and return maxhits object records array hw_getobjectbyftqueryobj(int link, string query, int maxhits) - Search for query as fulltext and return maxhits object records * + Search for query as fulltext and return maxhits object records array hw_getobjectbyquery(int link, string query, int maxhits) - Search for query and return maxhits objids * + Search for query and return maxhits objids array hw_getobjectbyquerycoll(int link, int collid, string query, int maxhits) - Search for query in collection and return maxhits objids * + Search for query in collection and return maxhits objids array hw_getobjectbyquerycollobj(int link, int collid, string query, int maxhits) - Search for query in collection and return maxhits object records * + Search for query in collection and return maxhits object records array hw_getobjectbyqueryobj(int link, string query, int maxhits) - Search for query and return maxhits object records * + Search for query and return maxhits object records array hw_getparents(int link, int objid) - Returns array of parent object ids * + Returns array of parent object ids array hw_getparentsobj(int link, int objid) - Returns array of parent object records * + Returns array of parent object records string hw_getrellink(int link, int rootid, int sourceid, int destid) - Get link from source to dest relative to rootid * + Get link from source to dest relative to rootid int hw_getremote(int link, int objid) - Returns the content of a remote document * + Returns the content of a remote document [array|int] hw_getremotechildren(int link, string objrec) - Returns the remote document or an array of object records * + Returns the remote document or an array of object records int hw_getsrcbydestobj(int link, int destid) - Returns object id of source docuent by destination anchor * + Returns object id of source docuent by destination anchor hwdoc hw_gettext(int link, int objid [, int rootid]) - Returns text document. Links are relative to rootid if given * + Returns text document. Links are relative to rootid if given string hw_getusername(int link) - Returns the current user name * + Returns the current user name void hw_identify(int link, string username, string password) - Identifies at Hyperwave server * + Identifies at Hyperwave server array hw_incollections(int link, array objids, array collids, int para) - Returns object ids which are in collections * + Returns object ids which are in collections void hw_info(int link) - Outputs info string * + Outputs info string void hw_inscoll(int link, int parentid, array objarr) - Inserts collection * + Inserts collection void hw_insdoc(int link, int parentid, string objrec [, string text]) - Inserts document * + Inserts document string hw_insertanchors(int hwdoc, array anchorecs, array dest [, array urlprefixes]) - Inserts only anchors into text * + Inserts only anchors into text void hw_insertdocument(int link, int parentid, hwdoc doc) - Insert new document * + Insert new document int hw_insertobject(int link, string objrec, string parms) - Inserts an object * + Inserts an object int hw_mapid(int link, int serverid, int destid) - Returns virtual object id of document on remote Hyperwave server * + Returns virtual object id of document on remote Hyperwave server void hw_modifyobject(int link, int objid, array remattributes, array addattributes [, int mode]) - Modifies attributes of an object * + Modifies attributes of an object void hw_mv(int link, array objrec, int from, int dest) - Moves object * + Moves object hwdoc hw_new_document(string objrec, string data, int size) - Create a new document * + Create a new document hwdoc hw_new_document_from_file(string objrec, string filename) - Create a new document from a file * + Create a new document from a file array hw_objrec2array(string objrec, [array format]) - Returns object array of object record * + Returns object array of object record void hw_output_document(hwdoc doc) - Prints document * + Prints document void hw_outputdocument(hwdoc doc) - An alias for hw_output_document * + An alias for hw_output_document int hw_pconnect(string host, int port [, string username [, string password]]) - Connect to the Hyperwave server persistent * + Connect to the Hyperwave server persistent hwdoc hw_pipecgi(int link, int objid) - Returns output of CGI script * + Returns output of CGI script hwdoc hw_pipedocument(int link, int objid [, array urlprefixes ] ) - Returns document with links inserted. Optionally a array with five urlprefixes may be passed, which will be inserted for the different types of anchors. This should be a named array with the following keys: HW_DEFAULT_LINK, HW_IMAGE_LINK, HW_BACKGROUND_LINK, HW_INTAG_LINK, and HW_APPLET_LINK. * + Returns document with links inserted. Optionally a array with five urlprefixes may be passed, which will be inserted for the different types of anchors. This should be a named array with the following keys: HW_DEFAULT_LINK, HW_IMAGE_LINK, HW_BACKGROUND_LINK, HW_INTAG_LINK, and HW_APPLET_LINK. hwdoc hw_pipedocument(int link, int objid) - Returns document * + Returns document int hw_root(void) - Returns object id of root collection * + Returns object id of root collection void hw_setlinkroot(int link, int rootid) - Set the id to which links are calculated * + Set the id to which links are calculated string hw_stat(int link) - Returns status string * + Returns status string void hw_unlock(int link, int objid) - Unlocks object * + Unlocks object array hw_who(int link) - Returns names and info of users loged in * + Returns names and info of users loged in # beta/php4/ext/imap/php_imap.c string imap_8bit(string text) - Convert an 8-bit string to a quoted-printable string * + Convert an 8-bit string to a quoted-printable string array imap_alerts(void) - Returns an array of all IMAP alerts that have been generated since the last page load or since the last imap_alerts() call, whichever came last. The alert stack is cleared after imap_alerts() is called. * + Returns an array of all IMAP alerts that have been generated since the last page load or since the last imap_alerts() call, whichever came last. The alert stack is cleared after imap_alerts() is called. int imap_append(int stream_id, string folder, string message [, string flags]) - Append a new message to a specified mailbox * + Append a new message to a specified mailbox string imap_base64(string text) - Decode BASE64 encoded text * + Decode BASE64 encoded text string imap_binary(string text) - Convert an 8bit string to a base64 string * + Convert an 8bit string to a base64 string string imap_body(int stream_id, int msg_no [, int options]) - Read the message body * + Read the message body object imap_bodystruct(int stream_id, int msg_no, int section) - Read the structure of a specified body section of a specific message * + Read the structure of a specified body section of a specific message object imap_check(int stream_id) - Get mailbox properties * + Get mailbox properties int imap_clearflag_full(int stream_id, string sequence, string flag [, int options]) - Clears flags on messages * + Clears flags on messages int imap_close(int stream_id [, int options]) - Close an IMAP stream * + Close an IMAP stream int imap_createmailbox(int stream_id, string mailbox) - Create a new mailbox * + Create a new mailbox int imap_delete(int stream_id, int msg_no [, int flags]) - Mark a message for deletion * + Mark a message for deletion int imap_deletemailbox(int stream_id, string mailbox) - Delete a mailbox * + Delete a mailbox array imap_errors(void) - Returns an array of all IMAP errors generated since the last page load, or since the last imap_errors() call, whichever came last. The error stack is cleared after imap_errors() is called. * + Returns an array of all IMAP errors generated since the last page load, or since the last imap_errors() call, whichever came last. The error stack is cleared after imap_errors() is called. int imap_expunge(int stream_id) - Permanently delete all messages marked for deletion * + Permanently delete all messages marked for deletion array imap_fetch_overview(int stream_id, int msg_no) - Read an overview of the information in the headers of the given message sequence * + Read an overview of the information in the headers of the given message sequence string imap_fetchbody(int stream_id, int msg_no, int section [, int options]) - Get a specific body section * + Get a specific body section string imap_fetchheader(int stream_id, int msg_no [, int options]) - Get the full unfiltered header for a message * + Get the full unfiltered header for a message object imap_fetchstructure(int stream_id, int msg_no [, int options]) - Read the full structure of a message * + Read the full structure of a message string imap_fetchtext_full(int stream_id, int msg_no [, int options]) - Read the full text of a message * + Read the full text of a message array imap_getmailboxes(int stream_id, string ref, string pattern) - Reads the list of mailboxes and returns a full array of objects containing name, attributes, and delimiter * + Reads the list of mailboxes and returns a full array of objects containing name, attributes, and delimiter array imap_getsubscribed(int stream_id, string ref, string pattern) - Return a list of subscribed mailboxes, in the same format as imap_getmailboxes() * + Return a list of subscribed mailboxes, in the same format as imap_getmailboxes() object imap_headerinfo(int stream_id, int msg_no [, int from_length [, int subject_length [, string default_host]]]) - Read the headers of the message * + Read the headers of the message array imap_headers(int stream_id) - Returns headers for all messages in a mailbox * + Returns headers for all messages in a mailbox string imap_last_error(void) - Returns the last error that was generated by an IMAP function. The error stack is NOT cleared after this call. * + Returns the last error that was generated by an IMAP function. The error stack is NOT cleared after this call. array imap_list(int stream_id, string ref, string pattern) - Read the list of mailboxes * + Read the list of mailboxes array imap_lsub(int stream_id, string ref, string pattern) - Return a list of subscribed mailboxes * + Return a list of subscribed mailboxes int imap_mail(string to, string subject, string message [, string additional_headers [, string cc [, string bcc [, string rpath]]]]) - Send an email message * + Send an email message string imap_mail_compose(array envelope, array body) - Create a MIME message based on given envelope and body sections * + Create a MIME message based on given envelope and body sections int imap_mail_copy(int stream_id, int msg_no, string mailbox [, int options]) - Copy specified message to a mailbox * + Copy specified message to a mailbox int imap_mail_move(int stream_id, int msg_no, string mailbox [, int options]) - Move specified message to a mailbox * + Move specified message to a mailbox object imap_mailboxmsginfo(int stream_id) - Returns info about the current mailbox * + Returns info about the current mailbox array imap_mime_header_decode(string str) - Decode mime header element in accordance with RFC 2047 and return array of objects containing 'charset' encoding and decoded 'text' * + Decode mime header element in accordance with RFC 2047 and return array of objects containing 'charset' encoding and decoded 'text' int imap_msgno(int stream_id, int unique_msg_id) - Get the sequence number associated with a UID * + Get the sequence number associated with a UID int imap_num_msg(int stream_id) - Gives the number of messages in the current mailbox * + Gives the number of messages in the current mailbox int imap_num_recent(int stream_id) - Gives the number of recent messages in current mailbox * + Gives the number of recent messages in current mailbox int imap_open(string mailbox, string user, string password [, int options]) - Open an IMAP stream to a mailbox * + Open an IMAP stream to a mailbox int imap_ping(int stream_id) - Check if the IMAP stream is still active * + Check if the IMAP stream is still active int imap_popen(string mailbox, string user, string password [, int options]) - Open a persistant IMAP stream to a mailbox * + Open a persistant IMAP stream to a mailbox string imap_qprint(string text) - Convert a quoted-printable string to an 8-bit string * + Convert a quoted-printable string to an 8-bit string int imap_renamemailbox(int stream_id, string old_name, string new_name) - Rename a mailbox * + Rename a mailbox int imap_reopen(int stream_id, string mailbox [, int options]) - Reopen an IMAP stream to a new mailbox * + Reopen an IMAP stream to a new mailbox array imap_rfc822_parse_adrlist(string address_string, string default_host) - Parses an address string * + Parses an address string object imap_rfc822_parse_headers(string headers [, string default_host]) - Parse a set of mail headers contained in a string, and return an object similar to imap_headerinfo() * + Parse a set of mail headers contained in a string, and return an object similar to imap_headerinfo() string imap_rfc822_write_address(string mailbox, string host, string personal) - Returns a properly formatted email address given the mailbox, host, and personal info * + Returns a properly formatted email address given the mailbox, host, and personal info array imap_scan(int stream_id, string ref, string pattern, string content) - Read list of mailboxes containing a certain string * + Read list of mailboxes containing a certain string array imap_search(int stream_id, string criteria [, long flags]) - Return a list of messages matching the given criteria * + Return a list of messages matching the given criteria int imap_setflag_full(int stream_id, string sequence, string flag [, int options]) - Sets flags on messages * + Sets flags on messages array imap_sort(int stream_id, int criteria, int reverse [, int options [, string search_criteria]]) - Sort an array of message headers, optionally including only messages that meet specified criteria. * + Sort an array of message headers, optionally including only messages that meet specified criteria. object imap_status(int stream_id, string mailbox, int options) - Get status info from a mailbox * + Get status info from a mailbox int imap_subscribe(int stream_id, string mailbox) - Subscribe to a mailbox * + Subscribe to a mailbox int imap_uid(int stream_id, int msg_no) - Get the unique message id associated with a standard sequential message number * + Get the unique message id associated with a standard sequential message number int imap_undelete(int stream_id, int msg_no) - Remove the delete flag from a message * + Remove the delete flag from a message int imap_unsubscribe(int stream_id, string mailbox) - Unsubscribe from a mailbox * + Unsubscribe from a mailbox string imap_utf7_decode(string buf) - Decode a modified UTF-7 string * + Decode a modified UTF-7 string string imap_utf7_encode(string buf) - Encode a string in modified UTF-7 * + Encode a string in modified UTF-7 string imap_utf8(string string) - Convert a string to UTF-8 * + Convert a string to UTF-8 # beta/php4/ext/informix/ifx.ec int ifx_affected_rows(int resultid) - Returns the number of rows affected by query identified by resultid * + Returns the number of rows affected by query identified by resultid void ifx_blobinfile_mode(int mode) - Sets the default blob-mode for all select-queries * + Sets the default blob-mode for all select-queries void ifx_byteasvarchar(int mode) - Sets the default byte-mode for all select-queries * + Sets the default byte-mode for all select-queries int ifx_close(int connid) - Close informix connection * + Close informix connection int ifx_connect([string database [, string userid [, string password]]]) - Connects to database using userid/password, returns connection id * + Connects to database using userid/password, returns connection id int ifx_copy_blob(int bid) - Duplicates the given blob-object * + Duplicates the given blob-object int ifx_create_blob(int type, int mode, string param) - Creates a blob-object * + Creates a blob-object int ifx_create_char(string param) - Creates a char-object * + Creates a char-object int ifx_do(int resultid) - Executes a previously prepared query or opens a cursor for it * + Executes a previously prepared query or opens a cursor for it string ifx_error([int connection_id]) - Returns the Informix error codes (SQLSTATE & SQLCODE) * + Returns the Informix error codes (SQLSTATE & SQLCODE) string ifx_errormsg([int errorcode]) - Returns the Informix errormessage associated with * + Returns the Informix errormessage associated with array ifx_fetch_row(int resultid [, mixed position]) - Fetches the next row or row if using a scroll cursor * + Fetches the next row or row if using a scroll cursor array ifx_fieldproperties(int resultid) - Returns an associative for query array with fieldnames as key * + Returns an associative for query array with fieldnames as key array ifx_fieldtypes(int resultid) - Returns an associative array with fieldnames as key for query * + Returns an associative array with fieldnames as key for query int ifx_free_blob(int bid) - Deletes the blob-object * + Deletes the blob-object int ifx_free_char(int bid) - Deletes the char-object * + Deletes the char-object int ifx_free_result(int resultid) - Releases resources for query associated with resultid * + Releases resources for query associated with resultid string ifx_get_blob(int bid) - Returns the content of the blob-object * + Returns the content of the blob-object string ifx_get_char(int bid) - Returns the content of the char-object * + Returns the content of the char-object int ifx_getsqlca(int resultid) - Returns the sqlerrd[] fields of the sqlca struct for query resultid * + Returns the sqlerrd[] fields of the sqlca struct for query resultid int ifx_htmltbl_result(int resultid [, string htmltableoptions]) - Formats all rows of the resultid query into a html table * + Formats all rows of the resultid query into a html table void ifx_nullformat(int mode) - Sets the default return value of a NULL-value on a fetch-row * + Sets the default return value of a NULL-value on a fetch-row int ifx_num_fields(int resultid) - Returns the number of columns in query resultid * + Returns the number of columns in query resultid int ifx_num_rows(int resultid) - Returns the number of rows already fetched for query identified by resultid * + Returns the number of rows already fetched for query identified by resultid int ifx_pconnect([string database [, string userid [, string password]]]) - Connects to database using userid/password, returns connection id * + Connects to database using userid/password, returns connection id int ifx_prepare(string query, int connid [, int cursortype] [, array idarray]) - Prepare a query on a given connection * + Prepare a query on a given connection int ifx_query(string query, int connid [, int cursortype] [, array idarray]) - Perform a query on a given connection * + Perform a query on a given connection void ifx_textasvarchar(int mode) - Sets the default text-mode for all select-queries * + Sets the default text-mode for all select-queries int ifx_update_blob(int bid, string content) - Updates the content of the blob-object * + Updates the content of the blob-object int ifx_update_char(int bid, string content) - Updates the content of the char-object * + Updates the content of the char-object int ifxus_close_slob(int bid) - Deletes the slob-object * + Deletes the slob-object int ifxus_create_slob(int mode) - Creates a slob-object and opens it * + Creates a slob-object and opens it int ifxus_free_slob(int bid) - Deletes the slob-object * + Deletes the slob-object int ifxus_open_slob(long bid, int mode) - Opens an slob-object * + Opens an slob-object int ifxus_read_slob(long bid, long nbytes) - Reads nbytes of the slob-object * + Reads nbytes of the slob-object int ifxus_seek_slob(long bid, int mode, long offset) - Sets the current file or seek position of an open slob-object * + Sets the current file or seek position of an open slob-object int ifxus_tell_slob(long bid) - Returns the current file or seek position of an open slob-object * + Returns the current file or seek position of an open slob-object int ifxus_write_slob(long bid, string content) - Writes a string into the slob-object * + Writes a string into the slob-object # beta/php4/ext/interbase/interbase.c int ibase_blob_add(int blob_id, string data) - Add data into created blob * + Add data into created blob int ibase_blob_cancel(int blob_id) - Cancel creating blob * + Cancel creating blob int ibase_blob_close(int blob_id) - Close blob * + Close blob int ibase_blob_create([int link_identifier]) - Create blob for adding data * + Create blob for adding data int ibase_blob_echo(string blob_id_str) - Output blob contents to browser * + Output blob contents to browser string ibase_blob_get(int blob_id, int len) - Get len bytes data from open blob * + Get len bytes data from open blob string ibase_blob_import([link_identifier,] int file_id) - Create blob, copy file in it, and close it * + Create blob, copy file in it, and close it object ibase_blob_info(string blob_id_str) - Return blob length and other useful info * + Return blob length and other useful info int ibase_blob_open(string blob_id) - Open blob for retriving data parts * + Open blob for retriving data parts int ibase_close([int link_identifier]) - Close an InterBase connection * + Close an InterBase connection int ibase_commit([int link_identifier,] int trans_number) - Commit transaction * + Commit transaction int ibase_connect(string database [, string username] [, string password] [, string charset] [, int buffers] [, int dialect] [, string role]) - Open a connection to an InterBase database * + Open a connection to an InterBase database string ibase_errmsg(void) - Return error message * + Return error message int ibase_execute(int query [, int bind_args [, int ...]) - Execute a previously prepared query * + Execute a previously prepared query object ibase_fetch_object(int result [, int blob_flag]) - Fetch a object from the results of a query * + Fetch a object from the results of a query array ibase_fetch_row(int result [, int blob_flag]) - Fetch a row from the results of a query * + Fetch a row from the results of a query array ibase_field_info(int result, int field_number) - Get information about a field * + Get information about a field int ibase_free_query(int query) - Free memory used by a query * + Free memory used by a query int ibase_free_result(int result) - Free the memory used by a result * + Free the memory used by a result int ibase_num_fields(int result) - Get the number of fields in result * + Get the number of fields in result int ibase_pconnect(string database [, string username] [, string password] [, string charset] [, int buffers] [, int dialect] [, string role]) - Open a persistent connection to an InterBase database * + Open a persistent connection to an InterBase database int ibase_prepare([int link_identifier,] string query) - Prepare a query for later execution * + Prepare a query for later execution int ibase_query([int link_identifier,] string query [, int bind_args]) - Execute a query * + Execute a query int ibase_rollback([int link_identifier,] int trans_number) - Roolback transaction * + Roolback transaction int ibase_timefmt(string format) - Sets the format of timestamp, date and time columns returned from queries * + Sets the format of timestamp, date and time columns returned from queries int ibase_trans([int trans_args [, int link_identifier]]) - Start transaction * + Start transaction # beta/php4/ext/ldap/ldap.c string ldap_8859_to_t61(string value) - Translate 8859 characters to t61 characters * + Translate 8859 characters to t61 characters int ldap_add(int link, string dn, array entry) - Add entries to LDAP directory * + Add entries to LDAP directory int ldap_bind(int link [, string dn, string password]) - Bind to LDAP directory * + Bind to LDAP directory int ldap_compare(int link, string dn, string attr, string value) - Determine if an entry has a specific value for one of its attributes * + Determine if an entry has a specific value for one of its attributes int ldap_connect([string host [, int port]]) - Connect to an LDAP server * + Connect to an LDAP server int ldap_count_entries(int link, int result) - Count the number of entries in a search result * + Count the number of entries in a search result int ldap_delete(int link, string dn) - Delete an entry from a directory * + Delete an entry from a directory string ldap_dn2ufn(string dn) - Convert DN to User Friendly Naming format * + Convert DN to User Friendly Naming format string ldap_err2str(int errno) - Convert error number to error string * + Convert error number to error string int ldap_errno(int link) - Get the current ldap error number * + Get the current ldap error number string ldap_error(int link) - Get the current ldap error string * + Get the current ldap error string array ldap_explode_dn(string dn, int with_attrib) - Splits DN into its component parts * + Splits DN into its component parts string ldap_first_attribute(int link, int result, int ber) - Return first attribute * + Return first attribute int ldap_first_entry(int link, int result) - Return first result id * + Return first result id int ldap_free_result(int result) - Free result memory * + Free result memory array ldap_get_attributes(int link, int result) - Get attributes from a search result entry * + Get attributes from a search result entry string ldap_get_dn(int link, int result) - Get the DN of a result entry * + Get the DN of a result entry array ldap_get_entries(int link, int result) - Get all result entries * + Get all result entries boolean ldap_get_option(int link, int option, mixed retval) - Get the current value of various session-wide parameters * + Get the current value of various session-wide parameters array ldap_get_values(int link, int result, string attribute) - Get all values from a result entry * + Get all values from a result entry array ldap_get_values_len(int link, int result, string attribute) - Get all values with lengths from a result entry * + Get all values with lengths from a result entry int ldap_list(int link, string base_dn, string filter [, array attrs [, int attrsonly [, int sizelimit [, int timelimit [, int deref]]]]] ) - Single-level search * + Single-level search int ldap_mod_add(int link, string dn, array entry) - Add attribute values to current * + Add attribute values to current int ldap_mod_del(int link, string dn, array entry) - Delete attribute values * + Delete attribute values int ldap_mod_replace(int link, string dn, array entry) - Replace attribute values with new ones * + Replace attribute values with new ones int ldap_modify(int link, string dn, array entry) - Modify an LDAP entry * + Modify an LDAP entry string ldap_next_attribute(int link, int result, int ber) - Get the next attribute in result * + Get the next attribute in result int ldap_next_entry(int link, int entry) - Get next result entry * + Get next result entry int ldap_read(int link, string base_dn, string filter [, array attrs [, int attrsonly [, int sizelimit [, int timelimit [, int deref]]]]] ) - Read an entry * + Read an entry int ldap_search(int link, string base_dn, string filter [, array attrs [, int attrsonly [, int sizelimit [, int timelimit [, int deref]]]]] ) - Search LDAP tree under base_dn * + Search LDAP tree under base_dn boolean ldap_set_option(int link, int option, mixed newval) - Set the value of various session-wide parameters * + Set the value of various session-wide parameters string ldap_t61_to_8859(string value) - Translate t61 characters to 8859 characters * + Translate t61 characters to 8859 characters int ldap_unbind(int link) - Unbind from LDAP directory * + Unbind from LDAP directory # beta/php4/ext/mcrypt/mcrypt.c string mcrypt_cbc(int cipher, string key, string data, int mode [, string iv]) - CBC crypt/decrypt data using key key with cipher cipher using optional iv * + CBC crypt/decrypt data using key key with cipher cipher using optional iv string mcrypt_cbc(int cipher, string key, string data, int mode, string iv) - CBC crypt/decrypt data using key key with cipher cipher starting with iv * + CBC crypt/decrypt data using key key with cipher cipher starting with iv string mcrypt_cfb(int cipher, string key, string data, int mode, string iv) - CFB crypt/decrypt data using key key with cipher cipher starting with iv * + CFB crypt/decrypt data using key key with cipher cipher starting with iv string mcrypt_cfb(int cipher, string key, string data, int mode, string iv) - CFB crypt/decrypt data using key key with cipher cipher starting with iv * + CFB crypt/decrypt data using key key with cipher cipher starting with iv string mcrypt_create_iv(int size, int source) - Create an initializing vector (IV) * + Create an initializing vector (IV) string mcrypt_decrypt(string cipher, string key, string data, string mode, string iv) - OFB crypt/decrypt data using key key with cipher cipher starting with iv * + OFB crypt/decrypt data using key key with cipher cipher starting with iv string mcrypt_ecb(int cipher, string key, string data, int mode) - ECB crypt/decrypt data using key key with cipher cipher * + ECB crypt/decrypt data using key key with cipher cipher string mcrypt_ecb(int cipher, string key, string data, int mode, string iv) - ECB crypt/decrypt data using key key with cipher cipher starting with iv * + ECB crypt/decrypt data using key key with cipher cipher starting with iv string mcrypt_enc_get_algorithms_name(resource td) - Returns the name of the algorithm specified by the descriptor td * + Returns the name of the algorithm specified by the descriptor td int mcrypt_enc_get_block_size(resource td) - Returns the block size of the cipher specified by the descriptor td * + Returns the block size of the cipher specified by the descriptor td int mcrypt_enc_get_iv_size(resource td) - Returns the size of the IV in bytes of the algorithm specified by the descriptor td * + Returns the size of the IV in bytes of the algorithm specified by the descriptor td int mcrypt_enc_get_key_size(resource td) - Returns the maximum supported key size in bytes of the algorithm specified by the descriptor td * + Returns the maximum supported key size in bytes of the algorithm specified by the descriptor td string mcrypt_enc_get_modes_name(resource td) - Returns the name of the mode specified by the descriptor td * + Returns the name of the mode specified by the descriptor td int mcrypt_enc_get_supported_key_sizes(resource td) - This function decrypts the crypttext * + This function decrypts the crypttext bool mcrypt_enc_is_block_algorithm(resource td) - Returns TRUE if the alrogithm is a block algorithms * + Returns TRUE if the alrogithm is a block algorithms bool mcrypt_enc_is_block_algorithm_mode(resource td) - Returns TRUE if the mode is for use with block algorithms * + Returns TRUE if the mode is for use with block algorithms bool mcrypt_enc_is_block_mode(resource td) - Returns TRUE if the mode outputs blocks * + Returns TRUE if the mode outputs blocks int mcrypt_enc_self_test(resource td) - This function runs the self test on the algorithm specified by the descriptor td * + This function runs the self test on the algorithm specified by the descriptor td string mcrypt_encrypt(string cipher, string key, string data, string mode, string iv) - OFB crypt/decrypt data using key key with cipher cipher starting with iv * + OFB crypt/decrypt data using key key with cipher cipher starting with iv string mcrypt_generic(resource td, string data) - This function encrypts the plaintext * + This function encrypts the plaintext bool mcrypt_generic_end(resource td) - This function terminates encrypt specified by the descriptor td * + This function terminates encrypt specified by the descriptor td int mcrypt_generic_init(resource td, string key, string iv) - This function initializes all buffers for the specific module * + This function initializes all buffers for the specific module int mcrypt_get_block_size(int cipher) - Get the block size of cipher * + Get the block size of cipher int mcrypt_get_block_size(string cipher, string module) - Get the key size of cipher * + Get the key size of cipher string mcrypt_get_cipher_name(int cipher) - Get the name of cipher * + Get the name of cipher string mcrypt_get_cipher_name(string cipher) - Get the key size of cipher * + Get the key size of cipher int mcrypt_get_iv_size(string cipher, string module) - Get the IV size of cipher (Usually the same as the blocksize) * + Get the IV size of cipher (Usually the same as the blocksize) int mcrypt_get_key_size(int cipher) - Get the key size of cipher * + Get the key size of cipher int mcrypt_get_key_size(string cipher, string module) - Get the key size of cipher * + Get the key size of cipher array mcrypt_list_algorithms([string lib_dir]) - List all algorithms in "module_dir" * + List all algorithms in "module_dir" array mcrypt_list_modes([string lib_dir]) - List all modes "module_dir" * + List all modes "module_dir" int mcrypt_module_get_algo_block_size(string algorithm [, string lib_dir]) - Returns the block size of the algorithm * + Returns the block size of the algorithm int mcrypt_module_get_algo_key_size(string algorithm [, string lib_dir]) - Returns the maximum supported key size of the algorithm * + Returns the maximum supported key size of the algorithm int mcrypt_module_get_supported_key_sizes(string algorithm [, string lib_dir]) - This function decrypts the crypttext * + This function decrypts the crypttext bool mcrypt_module_is_block_algorithm(string algorithm [, string lib_dir]) - Returns TRUE if the algorithm is a block algorithm * + Returns TRUE if the algorithm is a block algorithm bool mcrypt_module_is_block_algorithm_mode(string mode [, string lib_dir]) - Returns TRUE if the mode is for use with block algorithms * + Returns TRUE if the mode is for use with block algorithms bool mcrypt_module_is_block_mode(string mode [, string lib_dir]) - Returns TRUE if the mode outputs blocks of bytes * + Returns TRUE if the mode outputs blocks of bytes resource mcrypt_module_open(string cipher, string cipher_directory, string mode, string mode_directory) - Opens the module of the algorithm and the mode to be used * + Opens the module of the algorithm and the mode to be used bool mcrypt_module_self_test(string algorithm [, string lib_dir]) - Does a self test of the module "module" * + Does a self test of the module "module" string mcrypt_ofb(int cipher, string key, string data, int mode, string iv) - OFB crypt/decrypt data using key key with cipher cipher starting with iv * + OFB crypt/decrypt data using key key with cipher cipher starting with iv string mcrypt_ofb(int cipher, string key, string data, int mode, string iv) - OFB crypt/decrypt data using key key with cipher cipher starting with iv * + OFB crypt/decrypt data using key key with cipher cipher starting with iv string mdecrypt_generic(resource td, string data) - This function decrypts the plaintext * + This function decrypts the plaintext # beta/php4/ext/mhash/mhash.c string mhash(int hash, string data) - Hash data with hash * + Hash data with hash string mhash(int hash, string data, [string key]) - hash data with hash * + hash data with hash int mhash_count() - Get the number of available hashes * + Get the number of available hashes int mhash_get_block_size(int hash) - Get the block size of hash * + Get the block size of hash string mhash_get_hash_name(int hash) - Get the name of hash * + Get the name of hash string mhash_keygen_s2k(int hash, string input_password, string salt, int bytes) - generate a key using hash functions * + generate a key using hash functions # beta/php4/ext/msql/php_msql.c int msql_affected_rows(int query) - Return number of affected rows * + Return number of affected rows int msql_close([int link_identifier]) - Close an mSQL connection * + Close an mSQL connection int msql_connect([string hostname[:port]] [, string username] [, string password]) - Open a connection to an mSQL Server * + Open a connection to an mSQL Server int msql_create_db(string database_name [, int link_identifier]) - Create an mSQL database * + Create an mSQL database int msql_data_seek(int query, int row_number) - Move internal result pointer * + Move internal result pointer int msql_db_query(string database_name, string query [, int link_identifier]) - Send an SQL query to mSQL * + Send an SQL query to mSQL int msql_drop_db(string database_name [, int link_identifier]) - Drop (delete) an mSQL database * + Drop (delete) an mSQL database string msql_error([int link_identifier]) - Returns the text of the error message from previous mSQL operation * + Returns the text of the error message from previous mSQL operation array msql_fetch_array(int query [, int result_type]) - Fetch a result row as an associative array * + Fetch a result row as an associative array object msql_fetch_field(int query [, int field_offset]) - Get column information from a result and return as an object * + Get column information from a result and return as an object object msql_fetch_object(int query [, int result_type]) - Fetch a result row as an object * + Fetch a result row as an object array msql_fetch_row(int query) - Get a result row as an enumerated array * + Get a result row as an enumerated array string msql_field_flags(int query, int field_offset) - Get the flags associated with the specified field in a result * + Get the flags associated with the specified field in a result int msql_field_len(int query, int field_offet) - Returns the length of the specified field * + Returns the length of the specified field string msql_field_name(int query, int field_index) - Get the name of the specified field in a result * + Get the name of the specified field in a result int msql_field_seek(int query, int field_offset) - Set result pointer to a specific field offset * + Set result pointer to a specific field offset string msql_field_table(int query, int field_offset) - Get name of the table the specified field is in * + Get name of the table the specified field is in string msql_field_type(int query, int field_offset) - Get the type of the specified field in a result * + Get the type of the specified field in a result int msql_free_result(int query) - Free result memory * + Free result memory int msql_list_dbs([int link_identifier]) - List databases available on an mSQL server * + List databases available on an mSQL server int msql_list_fields(string database_name, string table_name [, int link_identifier]) - List mSQL result fields * + List mSQL result fields int msql_list_tables(string database_name [, int link_identifier]) - List tables in an mSQL database * + List tables in an mSQL database int msql_num_fields(int query) - Get number of fields in a result * + Get number of fields in a result int msql_num_rows(int query) - Get number of rows in a result * + Get number of rows in a result int msql_pconnect([string hostname[:port]] [, string username] [, string password]) - Open a persistent connection to an mSQL Server * + Open a persistent connection to an mSQL Server int msql_query(string query [, int link_identifier]) - Send an SQL query to mSQL * + Send an SQL query to mSQL int msql_result(int query, int row [, mixed field]) - Get result data * + Get result data int msql_select_db(string database_name [, int link_identifier]) - Select an mSQL database * + Select an mSQL database # beta/php4/ext/mysql/php_mysql.c int mysql_affected_rows([int link_identifier]) - Get number of affected rows in previous MySQL operation * + Get number of affected rows in previous MySQL operation int mysql_close([int link_identifier]) - Close a MySQL connection * + Close a MySQL connection int mysql_connect([string hostname[:port][:/path/to/socket]] [, string username] [, string password]) - Open a connection to a MySQL Server * + Open a connection to a MySQL Server int mysql_create_db(string database_name [, int link_identifier]) - Create a MySQL database * + Create a MySQL database int mysql_data_seek(int result, int row_number) - Move internal result pointer * + Move internal result pointer int mysql_db_query(string database_name, string query [, int link_identifier] [, int result_mode]) - Send an SQL query to MySQL * + Send an SQL query to MySQL int mysql_drop_db(string database_name [, int link_identifier]) - Drop (delete) a MySQL database * + Drop (delete) a MySQL database int mysql_errno([int link_identifier]) - Returns the number of the error message from previous MySQL operation * + Returns the number of the error message from previous MySQL operation string mysql_error([int link_identifier]) - Returns the text of the error message from previous MySQL operation * + Returns the text of the error message from previous MySQL operation char mysql_escape_string([char string]) - Escape string for mysql query * + Escape string for mysql query array mysql_fetch_array(int result [, int result_type]) - Fetch a result row as an array (associative, numeric or both)* + Fetch a result row as an array (associative, numeric or both) array mysql_fetch_assoc(int result) - Fetch a result row as an associative array * + Fetch a result row as an associative array object mysql_fetch_field(int result [, int field_offset]) - Get column information from a result and return as an object * + Get column information from a result and return as an object array mysql_fetch_lengths(int result) - Get max data size of each column in a result * + Get max data size of each column in a result object mysql_fetch_object(int result [, int result_type]) - Fetch a result row as an object * + Fetch a result row as an object array mysql_fetch_row(int result) - Get a result row as an enumerated array * + Get a result row as an enumerated array string mysql_field_flags(int result, int field_offset) - Get the flags associated with the specified field in a result * + Get the flags associated with the specified field in a result int mysql_field_len(int result, int field_offet) - Returns the length of the specified field * + Returns the length of the specified field string mysql_field_name(int result, int field_index) - Get the name of the specified field in a result * + Get the name of the specified field in a result int mysql_field_seek(int result, int field_offset) - Set result pointer to a specific field offset * + Set result pointer to a specific field offset string mysql_field_table(int result, int field_offset) - Get name of the table the specified field is in * + Get name of the table the specified field is in string mysql_field_type(int result, int field_offset) - Get the type of the specified field in a result * + Get the type of the specified field in a result int mysql_free_result(int result) - Free result memory * + Free result memory int mysql_insert_id([int link_identifier]) - Get the id generated from the previous INSERT operation * + Get the id generated from the previous INSERT operation int mysql_list_dbs([int link_identifier]) - List databases available on a MySQL server * + List databases available on a MySQL server int mysql_list_fields(string database_name, string table_name [, int link_identifier]) - List MySQL result fields * + List MySQL result fields int mysql_list_tables(string database_name [, int link_identifier]) - List tables in a MySQL database * + List tables in a MySQL database int mysql_num_fields(int result) - Get number of fields in a result * + Get number of fields in a result int mysql_num_rows(int result) - Get number of rows in a result * + Get number of rows in a result int mysql_pconnect([string hostname[:port][:/path/to/socket]] [, string username] [, string password]) - Open a persistent connection to a MySQL Server * + Open a persistent connection to a MySQL Server int mysql_query(string query [, int link_identifier] [, int result_mode]) - Send an SQL query to MySQL * + Send an SQL query to MySQL int mysql_result(int result, int row [, mixed field]) - Get result data * + Get result data int mysql_select_db(string database_name [, int link_identifier]) - Select a MySQL database * + Select a MySQL database # beta/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 * + Bind a PHP variable to an Oracle placeholder by name int ocicancel(int stmt) - Prepare a new row of data for reading * + Prepare a new row of data for reading int ocicolumnisnull(int stmt, int col) - Tell whether a column is NULL * + Tell whether a column is NULL string ocicolumnname(int stmt, int col) - Tell the name of a column * + Tell the name of a column int ocicolumnprecision(int stmt, int col) - Tell the precision of a column * + Tell the precision of a column int ocicolumnscale(int stmt, int col) - Tell the scale of a column * + Tell the scale of a column int ocicolumnsize(int stmt, int col) - Tell the maximum data size of a column * + Tell the maximum data size of a column mixed ocicolumntype(int stmt, int col) - Tell the data type of a column * + Tell the data type of a column mixed ocicolumntyperaw(int stmt, int col) - Tell the raw oracle data type of a column * + Tell the raw oracle data type of a column string ocicommit(int conn) - Commit the current context * + Commit the current context int ocidefinebyname(int stmt, string name, mixed &var [, int type]) - Define a PHP variable to an Oracle column by name * + Define a PHP variable to an Oracle column by name array ocierror([int stmt|conn|global]) - Return the last error of stmt|conn|global. If no error happened returns false. * + Return the last error of stmt|conn|global. If no error happened returns false. int ociexecute(int stmt [, int mode]) - Execute a parsed statement * + Execute a parsed statement int ocifetch(int stmt) - Prepare a new row of data for reading * + Prepare a new row of data for reading int ocifetchinto(int stmt, array &output [, int mode]) - Fetch a row of result data into an array * + Fetch a row of result data into an array int ocifetchstatement(int stmt, array &output) - Fetch all rows of result data into an array * + Fetch all rows of result data into an array string ocifreedesc(object lob) - Deletes large object description * + Deletes large object description int ocifreestatement(int stmt) - Free all resources associated with a statement * + Free all resources associated with a statement void ociinternaldebug(int onoff) - Toggle internal debugging output for the OCI extension * + Toggle internal debugging output for the OCI extension string ociloadlob(object lob) - Loads a large object * + Loads a large object int ocilogoff(int conn) - Disconnect from database * + Disconnect from database int ocilogon(string user, string pass [, string db]) - Connect to an Oracle database and log on. Returns a new session. * + Connect to an Oracle database and log on. Returns a new session. int ocinewcursor(int conn) - Return a new cursor (Statement-Handle) - use this to bind ref-cursors! * + Return a new cursor (Statement-Handle) - use this to bind ref-cursors! string ocinewdescriptor(int connection [, int type]) - Initialize a new empty descriptor LOB/FILE (LOB is default) * + Initialize a new empty descriptor LOB/FILE (LOB is default) int ocinlogon(string user, string pass [, string db]) - Connect to an Oracle database and log on. returns a new session * + Connect to an Oracle database and log on. returns a new session int ocinumcols(int stmt) - Return the number of result columns in a statement * + Return the number of result columns in a statement int ociparse(int conn, string query) - Parse a query and return a statement * + Parse a query and return a statement int ociplogon(string user, string pass [, string db]) - Connect to an Oracle database using a persistent connection and log on. Returns a new session. * + Connect to an Oracle database using a persistent connection and log on. Returns a new session. string ociresult(int stmt, mixed column) - Return a single column of result data * + Return a single column of result data string ocirollback(int conn) - Rollback the current context * + Rollback the current context int ocirowcount(int stmt) - Return the row count of an OCI statement * + Return the row count of an OCI statement string ocisavelob(object lob) - Saves a large object * + Saves a large object string ocisavelobfile(object lob) - Saves a large object file * + Saves a large object file string ociserverversion(int conn) - Return a string containing server version information * + Return a string containing server version information int ocisetprefetch(int conn, string query) - Set a prefetch query??? * + Set a prefetch query??? int ocistatementtype(int stmt) - Return the query type of an OCI statement * + Return the query type of an OCI statement void ociwritelobtofile(object lob [, string filename] [, int start] [, int length]) - Writes a large object into a file * + Writes a large object into a file # beta/php4/ext/odbc/php_odbc.c int odbc_autocommit(int connection_id [, int OnOff]) - Toggle autocommit mode or get status * + Toggle autocommit mode or get status int odbc_binmode(int result_id, int mode) - Handle binary column data * + Handle binary column data void odbc_close(int connection_id) - Close an ODBC connection * + Close an ODBC connection void odbc_close_all(void) - Close all ODBC connections * + Close all ODBC connections int odbc_columnprivileges(int connection_id, string catalog, string schema, string table, string column) - Returns a result identifier that can be used to fetch a list of columns and associated privileges for the specified table * + Returns a result identifier that can be used to fetch a list of columns and associated privileges for the specified table int odbc_columns(int connection_id, string qualifier, string owner, string table_name, string column_name) - Returns a result identifier that can be used to fetch a list of column names in specified tables * + Returns a result identifier that can be used to fetch a list of column names in specified tables int odbc_commit(int connection_id) - Commit an ODBC transaction * + Commit an ODBC transaction int odbc_connect(string DSN, string user, string password [, int cursor_option]) - Connect to a datasource * + Connect to a datasource string odbc_cursor(int result_id) - Get cursor name * + Get cursor name int odbc_exec(int connection_id, string query [, int flags]) - Prepare and execute an SQL statement * + Prepare and execute an SQL statement int odbc_execute(int result_id [, array parameters_array]) - Execute a prepared statement * + Execute a prepared statement array odbc_fetch_array(int result [, int rownumber]) - Fetch a result row as an associative array * + Fetch a result row as an associative array int odbc_fetch_into(int result_id [, int rownumber], array result_array) - Fetch one result row into an array * + Fetch one result row into an array object odbc_fetch_object(int result [, int rownumber]) - Fetch a result row as an object * + Fetch a result row as an object int odbc_fetch_row(int result_id [, int row_number]) - Fetch a row * + Fetch a row int odbc_field_len(int result_id, int field_number) - Get the length (precision) of a column * + Get the length (precision) of a column string odbc_field_name(int result_id, int field_number) - Get a column name * + Get a column name int odbc_field_num(int result_id, string field_name) - Return column number * + Return column number int odbc_field_scale(int result_id, int field_number) - Get the scale of a column * + Get the scale of a column string odbc_field_type(int result_id, int field_number) - Get the datatype of a column * + Get the datatype of a column int odbc_foreignkeys(int connection_id, string pk_qualifier, string pk_owner, string pk_table, string fk_qualifier, string fk_owner, string fk_table) - Returns a result identifier to either a list of foreign keys in the specified table or a list of foreign keys in other tables that refer to the primary key in the specified table * + Returns a result identifier to either a list of foreign keys in the specified table or a list of foreign keys in other tables that refer to the primary key in the specified table int odbc_free_result(int result_id) - Free resources associated with a result * + Free resources associated with a result int odbc_gettypeinfo(int connection_id [, int data_type]) - Returns a result identifier containing information about data types supported by the data source * + Returns a result identifier containing information about data types supported by the data source int odbc_longreadlen(int result_id, int length) - Handle LONG columns * + Handle LONG columns int odbc_num_fields(int result_id) - Get number of columns in a result * + Get number of columns in a result int odbc_num_rows(int result_id) - Get number of rows in a result * + Get number of rows in a result int odbc_pconnect(string DSN, string user, string password [, int cursor_option]) - Establish a persistent connection to a datasource * + Establish a persistent connection to a datasource int odbc_prepare(int connection_id, string query) - Prepares a statement for execution * + Prepares a statement for execution int odbc_primarykeys(int connection_id, string qualifier, string owner, string table) - Returns a result identifier listing the column names that comprise the primary key for a table * + Returns a result identifier listing the column names that comprise the primary key for a table int odbc_procedurecolumns(int connection_id [, string qualifier, string owner, string proc, string column]) - Returns a result identifier containing the list of input and output parameters, as well as the columns that make up the result set for the specified procedures * + Returns a result identifier containing the list of input and output parameters, as well as the columns that make up the result set for the specified procedures int odbc_procedures(int connection_id [, string qualifier, string owner, string name]) - Returns a result identifier containg the list of procedure names in a datasource * + Returns a result identifier containg the list of procedure names in a datasource string odbc_result(int result_id, mixed field) - Get result data * + Get result data int odbc_result_all(int result_id [, string format]) - Print result as HTML table * + Print result as HTML table int odbc_rollback(int connection_id) - Rollback a transaction * + Rollback a transaction int odbc_setoption(int conn_id|result_id, int which, int option, int value) - Sets connection or statement options * + Sets connection or statement options int odbc_specialcolumns(int connection_id, int type, string qualifier, string owner, string table, int scope, int nullable) - Returns a result identifier containing either the optimal set of columns that uniquely identifies a row in the table or columns that are automatically updated when any value in the row is updated by a transaction * + Returns a result identifier containing either the optimal set of columns that uniquely identifies a row in the table or columns that are automatically updated when any value in the row is updated by a transaction int odbc_statistics(int connection_id, string qualifier, string owner, string name, int unique, int accuracy) - Returns a result identifier that contains statistics about a single table and the indexes associated with the table * + Returns a result identifier that contains statistics about a single table and the indexes associated with the table int odbc_tableprivileges(int connection_id, string qualifier, string owner, string name) - Returns a result identifier containing a list of tables and the privileges associated with each table * + Returns a result identifier containing a list of tables and the privileges associated with each table int odbc_tables(int connection_id [, string qualifier, string owner, string name, string table_types]) - Call the SQLTables function * + Call the SQLTables function # beta/php4/ext/oracle/oracle.c int ora_bind(int cursor, string php_variable_name, string sql_parameter_name, int length [, int type]) - Bind a PHP variable to an Oracle parameter * + Bind a PHP variable to an Oracle parameter int ora_close(int cursor) - Close an Oracle cursor * + Close an Oracle cursor string ora_columnname(int cursor, int column) - Get the name of an Oracle result column * + Get the name of an Oracle result column int ora_columnsize(int cursor, int column) - Return the size of the column * + Return the size of the column string ora_columntype(int cursor, int column) - Get the type of an Oracle result column * + Get the type of an Oracle result column int ora_commit(int connection) - Commit an Oracle transaction * + Commit an Oracle transaction int ora_commitoff(int connection) - Disable automatic commit * + Disable automatic commit int ora_commiton(int connection) - Enable automatic commit * + Enable automatic commit int ora_do(int connection, int cursor) - Parse and execute a statement and fetch first result row * + Parse and execute a statement and fetch first result row string ora_error(int cursor_or_connection) - Get an Oracle error message * + Get an Oracle error message int ora_errorcode(int cursor_or_connection) - Get an Oracle error code * + Get an Oracle error code int ora_exec(int cursor) - Execute a parsed statement * + Execute a parsed statement int ora_fetch(int cursor) - Fetch a row of result data from a cursor * + Fetch a row of result data from a cursor int ora_fetch_into(int cursor, array result [, int flags]) - Fetch a row into the specified result array * + Fetch a row into the specified result array mixed ora_getcolumn(int cursor, int column) - Get data from a fetched row * + Get data from a fetched row int ora_logoff(int connection) - Close an Oracle connection * + Close an Oracle connection int ora_logon(string user, string password) - Open an Oracle connection * + Open an Oracle connection int ora_numcols(int cursor) - Returns the numbers of columns in a result * + Returns the numbers of columns in a result int ora_numrows(int cursor) - Returns the number of rows in a result * + Returns the number of rows in a result int ora_open(int connection) - Open an Oracle cursor * + Open an Oracle cursor int ora_parse(int cursor, string sql_statement [, int defer]) - Parse an Oracle SQL statement * + Parse an Oracle SQL statement int ora_plogon(string user, string password) - Open a persistent Oracle connection * + Open a persistent Oracle connection int ora_rollback(int connection) - Roll back an Oracle transaction * + Roll back an Oracle transaction # beta/php4/ext/pcre/php_pcre.c array preg_grep(string regex, array input) - Searches array and returns entries which match regex * + Searches array and returns entries which match regex int preg_match(string pattern, string subject [, array subpatterns]) - Perform a Perl-style regular expression match * + Perform a Perl-style regular expression match int preg_match_all(string pattern, string subject, array subpatterns [, int order]) - Perform a Perl-style global regular expression match * + Perform a Perl-style global regular expression match string preg_quote(string str, string delim_char) - Quote regular expression characters plus an optional character * + Quote regular expression characters plus an optional character string preg_replace(string|array regex, string|array replace, string|array subject [, int limit]) - Perform Perl-style regular expression replacement. * + Perform Perl-style regular expression replacement. array preg_split(string pattern, string subject [, int limit [, int flags]]) - Split string into an array using a perl-style regular expression as a delimiter * + Split string into an array using a perl-style regular expression as a delimiter # beta/php4/ext/pdf/pdf.c void pdf_add_annotation(int pdfdoc, double xll, double yll, double xur, double xur, string title, string text) - Sets annotation * + Sets annotation int pdf_add_outline(int pdfdoc, string text [, int parent, int open]); - Add bookmark for current page * + Add bookmark for current page void pdf_add_pdflink(int pdfdoc, double llx, double lly, double urx, double ury, string filename, int page, string dest) - Adds link to pdf document * + Adds link to pdf document void pdf_add_weblink(int pdfdoc, double llx, double lly, double urx, double ury, string url) - Adds link to web resource * + Adds link to web resource void pdf_arc(int pdfdoc, double x, double y, double radius, double start, double end) - Draws an arc * + Draws an arc void pdf_begin_page(int pdfdoc, double width, double height) - Starts page * + Starts page void pdf_circle(int pdfdoc, double x, double y, double radius) - Draws a circle * + Draws a circle void pdf_clip(int pdfdoc) - Clips to current path * + Clips to current path void pdf_close(int pdfdoc) - Closes the pdf document * + Closes the pdf document void pdf_close_image(int pdfimage) - Closes the pdf image * + Closes the pdf image void pdf_closepath(int pdfdoc) - Close path * + Close path void pdf_closepath_fill_stroke(int pdfdoc) - Close, fill and stroke current path * + Close, fill and stroke current path void pdf_closepath_stroke(int pdfdoc) - Close path and draw line along path * + Close path and draw line along path void pdf_continue_text(int pdfdoc, string text) - Output text in next line * + Output text in next line void pdf_curveto(int pdfdoc, double x1, double y1, double x2, double y2, double x3, double y3) - Draws a curve * + Draws a curve void pdf_end_page(int pdfdoc) - Ends page * + Ends page void pdf_endpath(int pdfdoc) - Ends current path * + Ends current path void pdf_fill(int pdfdoc) - Fill current path * + Fill current path void pdf_fill_stroke(int pdfdoc) - Fill and stroke current path * + Fill and stroke current path int pdf_get_font(int pdfdoc) - Gets the current font * + Gets the current font string pdf_get_fontname(int pdfdoc) - Gets the current fo