function drupal_json_decode

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

See also

drupal_json_encode()

Related topics

25 calls to drupal_json_decode()

File

drupal/core/includes/common.inc, line 4004
Common functions that many Drupal modules will need to reference.

Code

function drupal_json_decode($var) {
  return json_decode($var, TRUE);
}