function setClipboard(text) {
const type = "text/html";
const blob = new Blob([text], { type });
const data = [new ClipboardItem({ [type]: blob })];
navigator.clipboard.write(data).then(
function () {
console.log('/* success */');
},
function (err) {
console.log(err);
}
);
}
DOMException: Document is not focused.
возникает если из консоли запускать, разумеется на странице работает. preg_match("#" . preg_quote("S8+") ."(\s|$)#iu","S8+", $matches);
"S8+"
- входящая строка, это у меня сообщение клиента в чате, по этому я должен использовать preg_quote
.int preg_match ( string $pattern , string $subject [, array &$matches [, int $flags = 0 [, int $offset = 0 ]]] )
preg_match("#" . preg_quote("S8") ."(\s|$)#iu", preg_quote('S8+'), $matches);