App-Mxpress-PDF
view release on metacpan or search on metacpan
public/javascripts/ace/mode-php_laravel_blade.js view on Meta::CPAN
"bool flock(resource fp, int operation [, int &wouldblock])",
"Portable file locking"
],
"floor": [
"float floor(float number)",
"Returns the next lowest integer value from the number"
],
"flush": [
"void flush(void)",
"Flush the output buffer"
],
"fmod": [
"float fmod(float x, float y)",
"Returns the remainder of dividing x by y as a float"
],
"fnmatch": [
"bool fnmatch(string pattern, string filename [, int flags])",
"Match filename against pattern"
],
"fopen": [
"resource fopen(string filename, string mode [, bool use_include_path [, resource context]])",
"Open a file or a URL and return a file pointer"
],
"forward_static_call": [
"mixed forward_static_call(mixed function_name [, mixed parmeter] [, mixed ...])",
"Call a user function which is the first parameter"
],
"fpassthru": [
"int fpassthru(resource fp)",
"Output all remaining data from a file pointer"
],
"fprintf": [
"int fprintf(resource stream, string format [, mixed arg1 [, mixed ...]])",
"Output a formatted string into a stream"
],
"fputcsv": [
"int fputcsv(resource fp, array fields [, string delimiter [, string enclosure]])",
"Format line as CSV and write to file pointer"
],
"fread": [
"string fread(resource fp, int length)",
"Binary-safe file read"
],
"frenchtojd": [
"int frenchtojd(int month, int day, int year)",
"Converts a french republic calendar date to julian day count"
],
"fscanf": [
"mixed fscanf(resource stream, string format [, string ...])",
"Implements a mostly ANSI compatible fscanf()"
],
"fseek": [
"int fseek(resource fp, int offset [, int whence])",
"Seek on a file pointer"
],
"fsockopen": [
"resource fsockopen(string hostname, int port [, int errno [, string errstr [, float timeout]]])",
"Open Internet or Unix domain socket connection"
],
"fstat": [
"array fstat(resource fp)",
"Stat() on a filehandle"
],
"ftell": [
"int ftell(resource fp)",
"Get file pointer's read/write position"
],
"ftok": [
"int ftok(string pathname, string proj)",
"Convert a pathname and a project identifier to a System V IPC key"
],
"ftp_alloc": [
"bool ftp_alloc(resource stream, int size[, &response])",
"Attempt to allocate space on the remote FTP server"
],
"ftp_cdup": [
"bool ftp_cdup(resource stream)",
"Changes to the parent directory"
],
"ftp_chdir": [
"bool ftp_chdir(resource stream, string directory)",
"Changes directories"
],
"ftp_chmod": [
"int ftp_chmod(resource stream, int mode, string filename)",
"Sets permissions on a file"
],
"ftp_close": [
"bool ftp_close(resource stream)",
"Closes the FTP stream"
],
"ftp_connect": [
"resource ftp_connect(string host [, int port [, int timeout]])",
"Opens a FTP stream"
],
"ftp_delete": [
"bool ftp_delete(resource stream, string file)",
"Deletes a file"
],
"ftp_exec": [
"bool ftp_exec(resource stream, string command)",
"Requests execution of a program on the FTP server"
],
"ftp_fget": [
"bool ftp_fget(resource stream, resource fp, string remote_file, int mode[, int resumepos])",
"Retrieves a file from the FTP server and writes it to an open file"
],
"ftp_fput": [
"bool ftp_fput(resource stream, string remote_file, resource fp, int mode[, int startpos])",
"Stores a file from an open file to the FTP server"
],
"ftp_get": [
"bool ftp_get(resource stream, string local_file, string remote_file, int mode[, int resume_pos])",
"Retrieves a file from the FTP server and writes it to a local file"
],
"ftp_get_option": [
"mixed ftp_get_option(resource stream, int option)",
"Gets an FTP option"
],
"ftp_login": [
"bool ftp_login(resource stream, string username, string password)",
public/javascripts/ace/mode-php_laravel_blade.js view on Meta::CPAN
"boolean locale_filter_matches(string $langtag, string $locale[, bool $canonicalize])",
"* Checks if a $langtag filter matches with $locale according to RFC 4647's basic filtering algorithm"
],
"locale_get_all_variants": [
"static array locale_get_all_variants($locale)",
"* gets an array containing the list of variants, or null"
],
"locale_get_default": [
"static string locale_get_default( )",
"Get default locale"
],
"locale_get_keywords": [
"static array locale_get_keywords(string $locale) {",
"* return an associative array containing keyword-value * pairs for this locale. The keys are keys to the array (doh!)"
],
"locale_get_primary_language": [
"static string locale_get_primary_language($locale)",
"* gets the primary language for the $locale"
],
"locale_get_region": [
"static string locale_get_region($locale)",
"* gets the region for the $locale"
],
"locale_get_script": [
"static string locale_get_script($locale)",
"* gets the script for the $locale"
],
"locale_lookup": [
"string locale_lookup(array $langtag, string $locale[, bool $canonicalize[, string $default = null]])",
"* Searchs the items in $langtag for the best match to the language * range"
],
"locale_set_default": [
"static string locale_set_default( string $locale )",
"Set default locale"
],
"localeconv": [
"array localeconv(void)",
"Returns numeric formatting information based on the current locale"
],
"localtime": [
"array localtime([int timestamp [, bool associative_array]])",
"Returns the results of the C system call localtime as an associative array if the associative_array argument is set to 1 other wise it is a regular array"
],
"log": [
"float log(float number, [float base])",
"Returns the natural logarithm of the number, or the base log if base is specified"
],
"log10": [
"float log10(float number)",
"Returns the base-10 logarithm of the number"
],
"log1p": [
"float log1p(float number)",
"Returns log(1 + number), computed in a way that accurate even when the value of number is close to zero"
],
"long2ip": [
"string long2ip(int proper_address)",
"Converts an (IPv4) Internet network address into a string in Internet standard dotted format"
],
"lstat": [
"array lstat(string filename)",
"Give information about a file or symbolic link"
],
"ltrim": [
"string ltrim(string str [, string character_mask])",
"Strips whitespace from the beginning of a string"
],
"mail": [
"int mail(string to, string subject, string message [, string additional_headers [, string additional_parameters]])",
"Send an email message"
],
"max": [
"mixed max(mixed arg1 [, mixed arg2 [, mixed ...]])",
"Return the highest value in an array or a series of arguments"
],
"mb_check_encoding": [
"bool mb_check_encoding([string var[, string encoding]])",
"Check if the string is valid for the specified encoding"
],
"mb_convert_case": [
"string mb_convert_case(string sourcestring, int mode [, string encoding])",
"Returns a case-folded version of sourcestring"
],
"mb_convert_encoding": [
"string mb_convert_encoding(string str, string to-encoding [, mixed from-encoding])",
"Returns converted string in desired encoding"
],
"mb_convert_kana": [
"string mb_convert_kana(string str [, string option] [, string encoding])",
"Conversion between full-width character and half-width character (Japanese)"
],
"mb_convert_variables": [
"string mb_convert_variables(string to-encoding, mixed from-encoding, mixed vars [, ...])",
"Converts the string resource in variables to desired encoding"
],
"mb_decode_mimeheader": [
"string mb_decode_mimeheader(string string)",
"Decodes the MIME \"encoded-word\" in the string"
],
"mb_decode_numericentity": [
"string mb_decode_numericentity(string string, array convmap [, string encoding])",
"Converts HTML numeric entities to character code"
],
"mb_detect_encoding": [
"string mb_detect_encoding(string str [, mixed encoding_list [, bool strict]])",
"Encodings of the given string is returned (as a string)"
],
"mb_detect_order": [
"bool|array mb_detect_order([mixed encoding-list])",
"Sets the current detect_order or Return the current detect_order as a array"
],
"mb_encode_mimeheader": [
"string mb_encode_mimeheader(string str [, string charset [, string transfer-encoding [, string linefeed [, int indent]]]])",
"Converts the string to MIME \"encoded-word\" in the format of =?charset?(B|Q)?encoded_string?="
],
"mb_encode_numericentity": [
"string mb_encode_numericentity(string string, array convmap [, string encoding])",
"Converts specified characters to HTML numeric entities"
],
"mb_encoding_aliases": [
"array mb_encoding_aliases(string encoding)",
public/javascripts/ace/mode-php_laravel_blade.js view on Meta::CPAN
"string mysql_info([int link_identifier])",
"Returns a string containing information about the most recent query"
],
"mysql_insert_id": [
"int mysql_insert_id([int link_identifier])",
"Gets the ID generated from the previous INSERT operation"
],
"mysql_list_dbs": [
"resource mysql_list_dbs([int link_identifier])",
"List databases available on a MySQL server"
],
"mysql_list_fields": [
"resource mysql_list_fields(string database_name, string table_name [, int link_identifier])",
"List MySQL result fields"
],
"mysql_list_processes": [
"resource mysql_list_processes([int link_identifier])",
"Returns a result set describing the current server threads"
],
"mysql_list_tables": [
"resource mysql_list_tables(string database_name [, int link_identifier])",
"List tables in a MySQL database"
],
"mysql_num_fields": [
"int mysql_num_fields(resource result)",
"Gets number of fields in a result"
],
"mysql_num_rows": [
"int mysql_num_rows(resource result)",
"Gets number of rows in a result"
],
"mysql_pconnect": [
"resource mysql_pconnect([string hostname[:port][:/path/to/socket] [, string username [, string password [, int flags]]]])",
"Opens a persistent connection to a MySQL Server"
],
"mysql_ping": [
"bool mysql_ping([int link_identifier])",
"Ping a server connection. If no connection then reconnect."
],
"mysql_query": [
"resource mysql_query(string query [, int link_identifier])",
"Sends an SQL query to MySQL"
],
"mysql_real_escape_string": [
"string mysql_real_escape_string(string to_be_escaped [, int link_identifier])",
"Escape special characters in a string for use in a SQL statement, taking into account the current charset of the connection"
],
"mysql_result": [
"mixed mysql_result(resource result, int row [, mixed field])",
"Gets result data"
],
"mysql_select_db": [
"bool mysql_select_db(string database_name [, int link_identifier])",
"Selects a MySQL database"
],
"mysql_set_charset": [
"bool mysql_set_charset(string csname [, int link_identifier])",
"sets client character set"
],
"mysql_stat": [
"string mysql_stat([int link_identifier])",
"Returns a string containing status information"
],
"mysql_thread_id": [
"int mysql_thread_id([int link_identifier])",
"Returns the thread id of current connection"
],
"mysql_unbuffered_query": [
"resource mysql_unbuffered_query(string query [, int link_identifier])",
"Sends an SQL query to MySQL, without fetching and buffering the result rows"
],
"mysqli_affected_rows": [
"mixed mysqli_affected_rows(object link)",
"Get number of affected rows in previous MySQL operation"
],
"mysqli_autocommit": [
"bool mysqli_autocommit(object link, bool mode)",
"Turn auto commit on or of"
],
"mysqli_cache_stats": [
"array mysqli_cache_stats(void)",
"Returns statistics about the zval cache"
],
"mysqli_change_user": [
"bool mysqli_change_user(object link, string user, string password, string database)",
"Change logged-in user of the active connection"
],
"mysqli_character_set_name": [
"string mysqli_character_set_name(object link)",
"Returns the name of the character set used for this connection"
],
"mysqli_close": [
"bool mysqli_close(object link)",
"Close connection"
],
"mysqli_commit": [
"bool mysqli_commit(object link)",
"Commit outstanding actions and close transaction"
],
"mysqli_connect": [
"object mysqli_connect([string hostname [,string username [,string passwd [,string dbname [,int port [,string socket]]]]]])",
"Open a connection to a mysql server"
],
"mysqli_connect_errno": [
"int mysqli_connect_errno(void)",
"Returns the numerical value of the error message from last connect command"
],
"mysqli_connect_error": [
"string mysqli_connect_error(void)",
"Returns the text of the error message from previous MySQL operation"
],
"mysqli_data_seek": [
"bool mysqli_data_seek(object result, int offset)",
"Move internal result pointer"
],
"mysqli_debug": [
"void mysqli_debug(string debug)",
""
],
"mysqli_dump_debug_info": [
"bool mysqli_dump_debug_info(object link)",
public/javascripts/ace/mode-php_laravel_blade.js view on Meta::CPAN
"mixed mysqli_prepare(object link, string query)",
"Prepare a SQL statement for execution"
],
"mysqli_query": [
"mixed mysqli_query(object link, string query [,int resultmode]) */",
"PHP_FUNCTION(mysqli_query) { MY_MYSQL *mysql; zval *mysql_link; MYSQLI_RESOURCE *mysqli_resource; MYSQL_RES *result; char *query = NULL; unsigned int query_len; unsigned long resultmode = MYSQLI_STORE_RESULT; if (zen...
],
"mysqli_real_connect": [
"bool mysqli_real_connect(object link [,string hostname [,string username [,string passwd [,string dbname [,int port [,string socket [,int flags]]]]]]])",
"Open a connection to a mysql server"
],
"mysqli_real_escape_string": [
"string mysqli_real_escape_string(object link, string escapestr)",
"Escapes special characters in a string for use in a SQL statement, taking into account the current charset of the connection"
],
"mysqli_real_query": [
"bool mysqli_real_query(object link, string query)",
"Binary-safe version of mysql_query()"
],
"mysqli_reap_async_query": [
"int mysqli_reap_async_query(object link)",
"Poll connections"
],
"mysqli_refresh": [
"bool mysqli_refresh(object link, long options)",
"Flush tables or caches, or reset replication server information"
],
"mysqli_report": [
"bool mysqli_report(int flags)",
"sets report level"
],
"mysqli_rollback": [
"bool mysqli_rollback(object link)",
"Undo actions from current transaction"
],
"mysqli_select_db": [
"bool mysqli_select_db(object link, string dbname)",
"Select a MySQL database"
],
"mysqli_set_charset": [
"bool mysqli_set_charset(object link, string csname)",
"sets client character set"
],
"mysqli_set_local_infile_default": [
"void mysqli_set_local_infile_default(object link)",
"unsets user defined handler for load local infile command"
],
"mysqli_set_local_infile_handler": [
"bool mysqli_set_local_infile_handler(object link, callback read_func)",
"Set callback functions for LOAD DATA LOCAL INFILE"
],
"mysqli_sqlstate": [
"string mysqli_sqlstate(object link)",
"Returns the SQLSTATE error from previous MySQL operation"
],
"mysqli_ssl_set": [
"bool mysqli_ssl_set(object link ,string key ,string cert ,string ca ,string capath ,string cipher])",
""
],
"mysqli_stat": [
"mixed mysqli_stat(object link)",
"Get current system status"
],
"mysqli_stmt_affected_rows": [
"mixed mysqli_stmt_affected_rows(object stmt)",
"Return the number of rows affected in the last query for the given link"
],
"mysqli_stmt_attr_get": [
"int mysqli_stmt_attr_get(object stmt, long attr)",
""
],
"mysqli_stmt_attr_set": [
"int mysqli_stmt_attr_set(object stmt, long attr, long mode)",
""
],
"mysqli_stmt_bind_param": [
"bool mysqli_stmt_bind_param(object stmt, string types, mixed variable [,mixed,....])",
"Bind variables to a prepared statement as parameters"
],
"mysqli_stmt_bind_result": [
"bool mysqli_stmt_bind_result(object stmt, mixed var, [,mixed, ...])",
"Bind variables to a prepared statement for result storage"
],
"mysqli_stmt_close": [
"bool mysqli_stmt_close(object stmt)",
"Close statement"
],
"mysqli_stmt_data_seek": [
"void mysqli_stmt_data_seek(object stmt, int offset)",
"Move internal result pointer"
],
"mysqli_stmt_errno": [
"int mysqli_stmt_errno(object stmt)",
""
],
"mysqli_stmt_error": [
"string mysqli_stmt_error(object stmt)",
""
],
"mysqli_stmt_execute": [
"bool mysqli_stmt_execute(object stmt)",
"Execute a prepared statement"
],
"mysqli_stmt_fetch": [
"mixed mysqli_stmt_fetch(object stmt)",
"Fetch results from a prepared statement into the bound variables"
],
"mysqli_stmt_field_count": [
"int mysqli_stmt_field_count(object stmt) {",
"Return the number of result columns for the given statement"
],
"mysqli_stmt_free_result": [
"void mysqli_stmt_free_result(object stmt)",
"Free stored result memory for the given statement handle"
],
"mysqli_stmt_get_result": [
"object mysqli_stmt_get_result(object link)",
"Buffer result set on client"
],
"mysqli_stmt_get_warnings": [
"object mysqli_stmt_get_warnings(object link) */",
public/javascripts/ace/mode-php_laravel_blade.js view on Meta::CPAN
"int sqlite_num_rows(resource result)",
"Returns the number of rows in a buffered result set."
],
"sqlite_open": [
"resource sqlite_open(string filename [, int mode [, string &error_message]])",
"Opens a SQLite database. Will create the database if it does not exist."
],
"sqlite_popen": [
"resource sqlite_popen(string filename [, int mode [, string &error_message]])",
"Opens a persistent handle to a SQLite database. Will create the database if it does not exist."
],
"sqlite_prev": [
"bool sqlite_prev(resource result)",
"* Seek to the previous row number of a result set."
],
"sqlite_query": [
"resource sqlite_query(string query, resource db [, int result_type [, string &error_message]])",
"Executes a query against a given database and returns a result handle."
],
"sqlite_rewind": [
"bool sqlite_rewind(resource result)",
"Seek to the first row number of a buffered result set."
],
"sqlite_seek": [
"bool sqlite_seek(resource result, int row)",
"Seek to a particular row number of a buffered result set."
],
"sqlite_single_query": [
"array sqlite_single_query(resource db, string query [, bool first_row_only [, bool decode_binary]])",
"Executes a query and returns either an array for one single column or the value of the first row."
],
"sqlite_udf_decode_binary": [
"string sqlite_udf_decode_binary(string data)",
"Decode binary encoding on a string parameter passed to an UDF."
],
"sqlite_udf_encode_binary": [
"string sqlite_udf_encode_binary(string data)",
"Apply binary encoding (if required) to a string to return from an UDF."
],
"sqlite_unbuffered_query": [
"resource sqlite_unbuffered_query(string query, resource db [ , int result_type [, string &error_message]])",
"Executes a query that does not prefetch and buffer all data."
],
"sqlite_valid": [
"bool sqlite_valid(resource result)",
"Returns whether more rows are available."
],
"sqrt": [
"float sqrt(float number)",
"Returns the square root of the number"
],
"srand": [
"void srand([int seed])",
"Seeds random number generator"
],
"sscanf": [
"mixed sscanf(string str, string format [, string ...])",
"Implements an ANSI C compatible sscanf"
],
"stat": [
"array stat(string filename)",
"Give information about a file"
],
"str_getcsv": [
"array str_getcsv(string input[, string delimiter[, string enclosure[, string escape]]])",
"Parse a CSV string into an array"
],
"str_ireplace": [
"mixed str_ireplace(mixed search, mixed replace, mixed subject [, int &replace_count])",
"Replaces all occurrences of search in haystack with replace / case-insensitive"
],
"str_pad": [
"string str_pad(string input, int pad_length [, string pad_string [, int pad_type]])",
"Returns input string padded on the left or right to specified length with pad_string"
],
"str_repeat": [
"string str_repeat(string input, int mult)",
"Returns the input string repeat mult times"
],
"str_replace": [
"mixed str_replace(mixed search, mixed replace, mixed subject [, int &replace_count])",
"Replaces all occurrences of search in haystack with replace"
],
"str_rot13": [
"string str_rot13(string str)",
"Perform the rot13 transform on a string"
],
"str_shuffle": [
"void str_shuffle(string str)",
"Shuffles string. One permutation of all possible is created"
],
"str_split": [
"array str_split(string str [, int split_length])",
"Convert a string to an array. If split_length is specified, break the string down into chunks each split_length characters long."
],
"str_word_count": [
"mixed str_word_count(string str, [int format [, string charlist]])",
"Counts the number of words inside a string. If format of 1 is specified, then the function will return an array containing all the words found inside the string. If format of 2 is specified, then the function will return an assoc...
],
"strcasecmp": [
"int strcasecmp(string str1, string str2)",
"Binary safe case-insensitive string comparison"
],
"strchr": [
"string strchr(string haystack, string needle)",
"An alias for strstr"
],
"strcmp": [
"int strcmp(string str1, string str2)",
"Binary safe string comparison"
],
"strcoll": [
"int strcoll(string str1, string str2)",
"Compares two strings using the current locale"
],
"strcspn": [
"int strcspn(string str, string mask [, start [, len]])",
"Finds length of initial segment consisting entirely of characters not found in mask. If start or/and length is provide works like strcspn(substr($s,$start,$len),$bad_chars)"
],
"stream_bucket_append": [
"void stream_bucket_append(resource brigade, resource bucket)",
( run in 1.186 second using v1.01-cache-2.11-cpan-39bf76dae61 )