Switch language

wpseek.com
A WordPress-centric search engine for devs and theme authors




sanitize_user_object [ WordPress Function ]

sanitize_user_object ( $user, $context = 'display' )
Parameters:
  • (object|array) $user The User Object or Array
  • (string) $context Optional, default is 'display'. How to sanitize user fields.
Returns:
  • (object|array) The now sanitized User Object or Array (will be the same type as $user)
Defined at:



Sanitize every user field.

If the context is 'raw', then the user object or array will get minimal santization of the int fields.

Source


<?php
function sanitize_user_object($user$context 'display') {
    
_deprecated_function__FUNCTION__'3.3' );

    if ( 
is_object($user) ) {
        if ( !isset(
$user->ID) )
            
$user->ID 0;
        if ( !
is_a$user'WP_User' ) ) {
            
$vars get_object_vars($user);
            foreach ( 
array_keys($vars) as $field ) {
                if ( 
is_string($user->$field) || is_numeric($user->$field) )
                    
$user->$field sanitize_user_field($field$user->$field$user->ID$context);
            }
        }
        
$user->filter $context;
    } else {
        if ( !isset(
$user['ID']) )
            
$user['ID'] = 0;
        foreach ( 
array_keys($user) as $field )
            
$user[$field] = sanitize_user_field($field$user[$field], $user['ID'], $context);
        
$user['filter'] = $context;
    }

    return 
$user;
}
?>

Examples [ wp-snippets.com ]

Top Google zoekresultaten

Meer ...

Gebruikersdiscussies [ wordpress.org ]

0 User Note(s)

Nog geen één. Wees de eerste!

Nieuw toevoegen ...



HTML5 Powered with CSS3 / Styling, Performance & Integration, and Semantics