PoStreamReader::parseQuoted($string)
Parses a string in quotes.
Parameters
$string: A string specified with enclosing quotes.
Return value
The string parsed from inside the quotes.
File
core/lib/Drupal/Component/Gettext/PoStreamReader.php, line 550
Class
PoStreamReader Implements Gettext PO stream reader.
Namespace
Drupal\Component\Gettext
Code
function parseQuoted($string) {
if (substr($string, 0, 1) != substr($string, -1, 1)) {
// Start and end quotes must be the same.
re