escapedEnd() public static method

Return true if the ending quote of the string is escaped.
public static escapedEnd ( string $quotedString ) : boolean
$quotedString string
return boolean
Esempio n. 1
0
 protected function parseString(&$states, &$key, &$val, &$quote, $char)
 {
     if (($char === '"' || $char === "'") && !CommonUtils::escapedEnd($val)) {
         $stringParser = new StringAttribute($char);
         $stringParser->parse($states, $val, $quote);
         return;
     }
     ${in_array($states->current(), array('key', 'key char')) ? 'key' : 'val'} .= $char;
 }