wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
_wp_filter_build_unique_id is private and should not be used in themes or plugins directly.
_wp_filter_build_unique_id › WordPress Function
Seit2.2.3
Veraltetn/v
› _wp_filter_build_unique_id ( $hook_name, $callback, $priority )
| Zugriff: |
|
| Parameter: (3) |
|
| Links: | |
| Gibt zurück: |
|
| Definiert in: |
|
| Codex: | |
| Changelog: |
|
Builds a unique string ID for a hook callback function.
Functions and static method callbacks are just returned as strings and shouldn't have any speed penalty.Ähnliche Funktionen: wp_unique_id, wp_filter_object_list, wp_filter_wp_template_unique_post_slug, wp_filter_oembed_result, _http_build_query
Quellcode
function _wp_filter_build_unique_id( $hook_name, $callback, $priority ) {
if ( is_string( $callback ) ) {
return $callback;
}
if ( is_object( $callback ) ) {
// Closures are currently implemented as objects.
$callback = array( $callback, '' );
} else {
$callback = (array) $callback;
}
if ( is_object( $callback[0] ) ) {
// Object class calling.
return spl_object_hash( $callback[0] ) . $callback[1];
} elseif ( is_string( $callback[0] ) ) {
// Static calling.
return $callback[0] . '::' . $callback[1];
}
return null;
}