You are here

public function DevelDumperManagerInterface::export in Devel 8

Same name and namespace in other branches
  1. 8.3 src/DevelDumperManagerInterface.php \Drupal\devel\DevelDumperManagerInterface::export()
  2. 8.2 src/DevelDumperManagerInterface.php \Drupal\devel\DevelDumperManagerInterface::export()
  3. 4.x src/DevelDumperManagerInterface.php \Drupal\devel\DevelDumperManagerInterface::export()

Returns a string representation of a variable.

Parameters

mixed $input: The variable to dump.

string $name: (optional) The label to output before variable, defaults to NULL.

string $plugin_id: (optional) The plugin ID, defaults to NULL.

Return value

string String representation of a variable.

1 method overrides DevelDumperManagerInterface::export()
DevelDumperManager::export in src/DevelDumperManager.php
Returns a string representation of a variable.

File

src/DevelDumperManagerInterface.php, line 35

Class

DevelDumperManagerInterface
Interface DevelDumperManagerInterface

Namespace

Drupal\devel

Code

public function export($input, $name = NULL, $plugin_id = NULL);