Fix unquoted expression (variable instead of string), speed up search

master
Jean-Christian Paul Denis 2021-09-25 23:35:27 +02:00
parent 0c14799a44
commit 755037122c
Signed by: JcDenis
GPG Key ID: 1B5B8C5B90B6C951
1 changed files with 6 additions and 2 deletions

View File

@ -458,11 +458,15 @@ class dcTranslater
$parts = explode($func . '(', $content);
// remove fisrt element from array
array_shift($parts);
// put back first parenthesis
$parts = array_map(function($v){ return '(' . $v;}, $parts);
// walk through parts
$p = 0;
foreach($parts as $part) {
// should start with quote
if (!in_array(substr($part,0,1), ['"', "'"])) {
continue;
}
// put back first parenthesis
$part = '('.$part;
// find pairs of parenthesis
preg_match_all("/\((?:[^\)\(]+|(?R))*+\)/s", $part, $subparts);
// find quoted strings (single or double)