1.20.x drupal.inc drupal_json_decode($var)

Converts an HTML-safe JSON string into its PHP equivalent.

Deprecated

since 1.0.0

See also

backdrop_json_decode()

Related topics

File

includes/drupal.inc, line 1101
Contains constants and function wrappers for Drupal 7.x compatibility.

Code

function drupal_json_decode($var) {
  return backdrop_json_decode($var);
}