You are here

public static function PhpSerialize::decode in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Component/Serialization/PhpSerialize.php \Drupal\Component\Serialization\PhpSerialize::decode()

Decodes data from the serialization format.

Parameters

string $raw: The raw data string to decode.

Return value

mixed The decoded data.

Overrides SerializationInterface::decode

File

core/lib/Drupal/Component/Serialization/PhpSerialize.php, line 25
Contains \Drupal\Component\Serialization\PhpSerialize.

Class

PhpSerialize
Default serialization for serialized PHP.

Namespace

Drupal\Component\Serialization

Code

public static function decode($raw) {
  return unserialize($raw);
}