wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
sanitize_key › WordPress Function
Seit3.0.0
Veraltetn/v
› sanitize_key ( $key )
| Parameter: |
|
| Gibt zurück: |
|
| Definiert in: |
|
| Codex: |
Sanitizes a string key.
Keys are used as internal identifiers. Lowercase alphanumeric characters, dashes, and underscores are allowed.Quellcode
function sanitize_key( $key ) {
$sanitized_key = '';
if ( is_scalar( $key ) ) {
$sanitized_key = strtolower( $key );
$sanitized_key = preg_replace( '/[^a-z0-9_\-]/', '', $sanitized_key );
}
/**
* Filters a sanitized key string.
*
* @since 3.0.0
*
* @param string $sanitized_key Sanitized key.
* @param string $key The key prior to sanitization.
*/
return apply_filters( 'sanitize_key', $sanitized_key, $key );
}