PHP wrapper functions

Functions that are wrappers or custom implementations of PHP functions.

Certain PHP functions should not be used in Drupal. Instead, Drupal's replacement functions should be used.

For example, for improved or more secure UTF8-handling, or RFC-compliant handling of URLs in Drupal.

For ease of use and memorizing, all these wrapper functions use the same name as the original PHP function, but prefixed with "drupal_". Beware, however, that not all wrapper functions support the same arguments as the original functions.

You should always use these wrapper functions in your code.

Wrong:


  $my_substring = substr($original_string, 0, 5);

Correct:


  $my_substring = drupal_substr($original_string, 0, 5);

End of "defgroup php_wrappers".

Functions

Namesort iconLocationDescription
drupal/includes/form.incRetrieves the current batch.
drupal_chmoddrupal/includes/file.incSet the permissions on a file or directory.
drupal_dirnamedrupal/includes/file.incGets the name of the directory from a given path.
drupal_http_build_querydrupal/includes/common.incParse an array into a valid, rawurlencoded query string.
drupal_json_decodedrupal/includes/common.incConverts an HTML-safe JSON string into its PHP equivalent.
drupal_json_encodedrupal/includes/common.incConverts a PHP variable into its Javascript equivalent.
drupal_mkdirdrupal/includes/file.incCreates a directory using Drupal's default mode.
drupal_parse_urldrupal/includes/common.incWrapper around parse_url() to parse a system URL string into an associative array, suitable for url().
drupal_realpathdrupal/includes/file.incReturns the absolute path of a file or directory
drupal_rmdirdrupal/includes/file.incRemove a directory.
drupal_session_regeneratedrupal/includes/session.incCalled when an anonymous user becomes authenticated or vice-versa.
drupal_session_startdrupal/includes/session.incForcefully start a session, preserving already set session data.
drupal_set_time_limitdrupal/includes/common.incAttempts to set the PHP maximum execution time.
drupal_strlendrupal/includes/unicode.incCount the amount of characters in a UTF-8 string. This is less than or equal to the byte count.
drupal_strtolowerdrupal/includes/unicode.incLowercase a UTF-8 string.
drupal_strtoupperdrupal/includes/unicode.incUppercase a UTF-8 string.
drupal_substrdrupal/includes/unicode.incCut off a piece of a string based on character indices and counts. Follows the same behavior as PHP's own substr() function.
drupal_tempnamdrupal/includes/file.incCreates a file with a unique filename in the specified directory.
drupal_ucfirstdrupal/includes/unicode.incCapitalize the first letter of a UTF-8 string.
drupal_unlinkdrupal/includes/file.incDeletes a file.
drupal_xml_parser_createdrupal/includes/unicode.incPrepare a new XML parser.
php_evaldrupal/modules/php/php.moduleEvaluate a string of PHP code.