Same name and namespace in other branches
  1. 6.0.x advagg_js_minify/jspacker.inc \JavaScriptPacker::_escape95() 1 commentaire
  2. 7.x-1.x advagg_js_compress/jspacker.inc \JavaScriptPacker::_escape95() 1 commentaire
  3. 7.x-2.x advagg_js_compress/jspacker.inc \JavaScriptPacker::_escape95() 1 commentaire
  4. 8.x-2.x advagg_js_minify/jspacker.inc \JavaScriptPacker::_escape95() 1 commentaire
  5. 8.x-3.x advagg_js_minify/jspacker.inc \JavaScriptPacker::_escape95() 1 commentaire
  6. 8.x-4.x advagg_js_minify/jspacker.inc \JavaScriptPacker::_escape95() 1 commentaire
1 call to JavaScriptPacker::_escape95()
JavaScriptPacker::_encodeKeywords dans advagg_js_minify/jspacker.inc

Fichier

advagg_js_minify/jspacker.inc, line 459

Classe

JavaScriptPacker

Code

private function _escape95($script) {
    return preg_replace_callback('/[\\xa1-\\xff]/', array(
        &$this,
        '_escape95Bis',
    ), $script);
}