constant DRUPAL_PHP_FUNCTION_PATTERN

Regular expression to match PHP function names.

See also

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

10 uses of DRUPAL_PHP_FUNCTION_PATTERN
DrupalKernel::moduleData in drupal/core/lib/Drupal/Core/DrupalKernel.php
Returns module data on the filesystem.
drupal_get_filename in drupal/core/includes/bootstrap.inc
Returns and optionally sets the filename for a system resource.
drupal_required_modules in drupal/core/includes/module.inc
Returns an array of modules required by core.
drupal_verify_profile in drupal/core/includes/install.inc
Verifies that all dependencies are met for a given installation profile.
install_begin_request in drupal/core/includes/install.core.inc
Begins an installation request, modifying the installation state as needed.

... See full list

File

drupal/core/includes/bootstrap.inc, line 327
Functions that need to be loaded on every Drupal request.

Code

const DRUPAL_PHP_FUNCTION_PATTERN = '[a-zA-Z_\\x7f-\\xff][a-zA-Z0-9_\\x7f-\\xff]*';