From 3f9ba3b03349a11ed760307e259ea8398a279d51 Mon Sep 17 00:00:00 2001 From: khartlage Date: Sat, 25 Oct 2003 09:21:12 +0000 Subject: [PATCH] added php help to phpsyntax.xml --- .../sourceforge/phpeclipse/phpeditor/phpsyntax.xml | 144 ++++++++++---------- 1 files changed, 71 insertions(+), 73 deletions(-) diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/phpeditor/phpsyntax.xml b/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/phpeditor/phpsyntax.xml index e00ee9e..998d77f 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/phpeditor/phpsyntax.xml +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/phpeditor/phpsyntax.xml @@ -1462,12 +1462,12 @@ To retrieve the number of rows returned by a SELECT, use mysql_num_rows(). If the last query failed, this function will return -1. - - - - - - + Close MySQL connection + Open a connection to a MySQL Server + Create a MySQL database + Move internal result pointer + Get result data + Send a MySQL query Returns TRUE on success or FALSE on failure. @@ -1546,38 +1546,30 @@ type - the type of the column unsigned - 1 if the column is unsigned zerofill - 1 if the column is zero-filled - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + Get the length of each output in a result + Fetch a result row as an object + Get a result row as an enumerated array + Get the flags associated with the specified field in a result + Returns the length of the specified field + Get the name of the specified field in a result + Set result pointer to a specified field offset + Get name of the table the specified field is in + Get the type of the specified field in a result + Free result memory + Get MySQL client info + Get MySQL host info + Get MySQL protocol info + Get MySQL server info + Get information about the most recent query + Get the ID generated from the previous INSERT operation + List databases available on a MySQL server + List MySQL result fields + List MySQL processes + + Get number of fields in result + Get number of rows in result + Open a persistent connection to a MySQL server + Ping a server connection or reconnect if there is no connection mysql_query() sends a query to the currently active database on the server that's associated with the specified link identifier. @@ -1589,10 +1581,12 @@ The optional result_mode parameter can be MYSQL_USE_RESULT and MYSQL_STORE_RESUL It defaults to MYSQL_STORE_RESULT, so the result is buffered. See also mysql_unbuffered_query() for the counterpart of this behaviour. - - - - + Escapes special characters in a string for use in a SQL statement, taking into account the current charset of the connection. + Get result data + Select a MySQL database + Get current system status + Get table name of field + Return the current thread ID mysql_unbuffered_query() sends a SQL query query to MySQL, without fetching and buffering the result rows automatically, as mysql_query() does. @@ -2289,40 +2283,42 @@ will return the original version. Randomly shuffles a string Return information about words used in a string - - - - - - + Binary safe case-insensitive string comparison + Find the first occurrence of a character.This function is an alias for strstr(), and is identical in every way. + Binary safe string comparison. +Returns < 0 if str1 is less than str2; > 0 if str1 is greater than str2, and 0 if they are equal. +Note that this comparison is case sensitive. + + Locale based string comparison + Find length of initial segment not matching mask - - - - - - - - - - - - - - - - - + Strip HTML and PHP tags from a string + Un-quote string quoted with addcslashes() + Un-quote string quoted with addslashes() + Case-insensitive strstr() + Get string length + Case insensitive string comparisons using a "natural order" algorithm + String comparisons using a "natural order" algorithm + Binary safe case-insensitive string comparison of the first n characters + Binary safe string comparison of the first n characters + Find position of first occurrence of a string + Find the last occurrence of a character in a string + Reverse a string + Find position of last occurrence of a char in a string + Find length of initial segment matching mask + Find first occurrence of a string + Tokenize string + Make a string lowercase - - + Make a string uppercase + Translate certain characters Returns part of a string - - + Count the number of substring occurrences + Replace text within a portion of a string @@ -2452,10 +2448,10 @@ will return the original version. - + Strip whitespace from the beginning and end of a string Sort an array with a user-defined comparison function and maintain index association - - + Make a string's first character uppercase + Uppercase the first character of each word in a string @@ -2512,13 +2508,15 @@ will return the original version. + Output a formatted string + Output a formatted string - + Wraps a string to a given number of characters using a string break character -- 1.7.1