wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
rest_stabilize_value › WordPress Function
Seit5.5.0
Veraltetn/v
› rest_stabilize_value ( $value )
Parameter: |
|
Gibt zurück: |
|
Definiert in: |
|
Codex: |
Stabilizes a value following JSON Schema semantics.
For lists, order is preserved. For objects, properties are reordered alphabetically.Ähnliche Funktionen: rest_sanitize_boolean, rest_sanitize_array, rest_sanitize_value_from_schema, rest_sanitize_object, rest_are_values_equal
Quellcode
function rest_stabilize_value( $value ) { if ( is_scalar( $value ) || is_null( $value ) ) { return $value; } if ( is_object( $value ) ) { _doing_it_wrong( __FUNCTION__, __( 'Cannot stabilize objects. Convert the object to an array first.' ), '5.5.0' ); return $value; } ksort( $value ); foreach ( $value as $k => $v ) { $value[ $k ] = rest_stabilize_value( $v ); } return $value; }