constant DRUPAL_PHP_FUNCTION_PATTERN

Regular expression to match PHP function names.

See also

http://php.net/manual/language.functions.php

7 uses of DRUPAL_PHP_FUNCTION_PATTERN
drupal_get_filename in drupal-7.x/includes/bootstrap.inc
Returns and optionally sets the filename for a system resource.
drupal_required_modules in drupal-7.x/includes/module.inc
Returns an array of modules required by core.
drupal_verify_profile in drupal-7.x/includes/install.inc
Verifies an installation profile for installation.
update_verify_update_archive in drupal-7.x/modules/update/update.module
Implements hook_verify_update_archive().
_menu_router_build in drupal-7.x/includes/menu.inc
Builds the router table based on the data from hook_menu().

... See full list

File

drupal-7.x/includes/bootstrap.inc, line 249
Functions that need to be loaded on every Drupal request.

Code

define('DRUPAL_PHP_FUNCTION_PATTERN', '[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*')