CI_Xmlrpc::request()

request($incoming) Parameters: $incoming (array) – Request data Return type: void Takes an array of data and builds request to be sent to XML-RPC server: $request = array(array('My Photoblog', 'string'), 'http://www.yoursite.com/photoblog/'); $this->xmlrpc->request($request);

CI_Encryption::encrypt()

encrypt($data[, $params = NULL]) Parameters: $data (string) – Data to encrypt $params (array) – Optional parameters Returns: Encrypted data or FALSE on failure Return type: string Encrypts the input data and returns its ciphertext. Example: $ciphertext = $this->encryption->encrypt('My secret message'); Please refer to the Using custom parameters section for information on the optional parameters.

CI_DB_query_builder::get_compiled_insert()

get_compiled_insert([$table = ''[, $reset = TRUE]]) Parameters: $table (string) – Table name $reset (bool) – Whether to reset the current QB values or not Returns: The compiled SQL statement as a string Return type: string Compiles an INSERT statement and returns it as a string.

CI_DB_forge::add_column()

add_column($table[, $field = array()[, $_after = NULL]]) Parameters: $table (string) – Table name to add the column to $field (array) – Column definition(s) $_after (string) – Column for AFTER clause (deprecated) Returns: TRUE on success, FALSE on failure Return type: bool Adds a column to a table. Usage: See Adding a Column to a Table.

CI_DB_forge::drop_table()

drop_table($table_name[, $if_exists = FALSE]) Parameters: $table (string) – Name of the table to drop $if_exists (string) – Set to TRUE to add an ‘IF EXISTS’ clause Returns: TRUE on success, FALSE on failure Return type: bool Drops a table. Usage: See Dropping a table.

CI_Trackback::receive()

receive() Returns: TRUE on success, FALSE on failure Return type: bool This method simply validates the incoming TB data, returning TRUE on success and FALSE on failure. If the data is valid it is set to the $this->data array so that it can be inserted into a database.

CI_Migration

class CI_Migration current() Returns: TRUE if no migrations are found, current version string on success, FALSE on failure Return type: mixed Migrates up to the current version (whatever is set for $config['migration_version'] in application/config/migration.php). error_string() Returns: Error messages Return type: string This returns a string of errors that were detected while performing a migration. find_migrations() Returns: An array of migration files Return type: array An

CI_Xmlrpc

class CI_Xmlrpc initialize([$config = array()]) Parameters: $config (array) – Configuration data Return type: void Initializes the XML-RPC library. Accepts an associative array containing your settings. server($url[, $port = 80[, $proxy = FALSE[, $proxy_port = 8080]]]) Parameters: $url (string) – XML-RPC server URL $port (int) – Server port $proxy (string) – Optional proxy $proxy_port (int) – Proxy listening port Return type: void Sets the URL and port number of the ser

CI_Parser

class CI_Parser parse($template, $data[, $return = FALSE]) Parameters: $template (string) – Path to view file $data (array) – Variable data $return (bool) – Whether to only return the parsed template Returns: Parsed template string Return type: string Parses a template from the provided path and variables. parse_string($template, $data[, $return = FALSE]) Parameters: $template (string) – Path to view file $data (array) – Variable data $return (bool) – Whether to only re

CI_DB_driver::db_pconnect()

db_pconnect() Returns: Database connection resource/object or FALSE on failure Return type: mixed Establish a persistent connection with the database. Note This method is just an alias for db_connect(TRUE).