X-Git-Url: http://git.phpeclipse.com 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..8336273 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/phpeditor/phpsyntax.xml +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/phpeditor/phpsyntax.xml @@ -371,6 +371,7 @@ If the open fails, the function returns FALSE, otherwise it returns a pointer to + Directory class with properties, handle and class and methods read, rewind and close. @@ -447,7 +448,7 @@ This function is identical to ereg_replace() except that this ignores case disti Returns an array of strings, each of which is a substring of string formed by splitting it on boundaries formed by the string separator. If limit is set, the returned array will contain a maximum of limit elements with the last element containing the rest of string. -If separator is an empty string (""), explode() will return FALSE. If separator contains a value that is not contained in string, +If separator is an empty string (""), explode() will return FALSE. If separator contains a value that is not contained in string, then explode() will return an array containing string. Note: The limit parameter was added in PHP 4.0.1 @@ -538,6 +539,9 @@ This function will not work on remote files; the file to be examined must be acc The results of this function are cached. See clearstatcache() for more details. Using Windows shares: On windows, use //computername/share/filename or \\\\computername\share\filename to check files on network shares. + Identical to file(), except that file_get_contents() returns the file in a string. On failure, file_get_contents() will return FALSE. +file_get_contents() is the preferred way to read the contents of a file into a string. It will use memory mapping techniques if supported by your OS to enhance performance. + @@ -1117,6 +1121,7 @@ if ENT_NOQUOTES is set neither single nor double quotes are translated. + This function returns TRUE if the object is of this class or has this class as one of its parents, FALSE otherwise. @@ -1462,12 +1467,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 +1551,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 + List tables in a MySQL database + 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 +1586,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. @@ -2021,7 +2020,7 @@ Note: This information is also available in the predefined constant PHP_VERSION. Rewind the internal array pointer - + Output a string. Outputs arg. Returns TRUE on success or FALSE on failure. print() is not actually a real function (it is a language construct) so you are not required to use parentheses with it. @@ -2187,7 +2186,7 @@ This does not indicate whether the user accepted the cookie. All the arguments except the name argument are optional. If only the name argument is present, the cookie by that name will be deleted from the remote client. -You may also replace an argument with an empty string ("") in order to skip that argument. +You may also replace an argument with an empty string ("") in order to skip that argument. Because the expire and secure arguments are integers, they cannot be skipped with an empty string, use a zero (0) instead. @@ -2289,40 +2288,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 +2453,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 +2513,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 @@ -2625,7 +2628,7 @@ will return the original version. - + @@ -2649,7 +2652,7 @@ will return the original version. - + @@ -2657,6 +2660,27 @@ will return the original version. + + + + + + + + + + + + + + + + + + + + + ========================================================= *Below this are the various PHP-specific variable types * =========================================================