function _locale_strip_quotes

_locale_strip_quotes($string)

Removes the quotes and string concatenations from the string.

Parameters

string $string: Single or double quoted strings, optionally concatenated by plus (+) sign.

Return value

string String with leading and trailing quotes removed.

File

core/modules/locale/locale.module, line 1116
Enables the translation of the user interface to languages other than English.

Code

function _locale_strip_quotes($string) {
  return implode('', preg_split('~(?<!\\\\)[\'"]\s*\+\s*[\'"]~s', substr($string, 1, -1)));
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!modules!locale!locale.module/function/_locale_strip_quotes/8.1.x