request('https://2ch.hk/b/',(error,response,body)=>{
const $ = cheerio.load(body)
const threadfind = $('blockquote')
if(threadfind && threadfind.text().includes('WEBM'))
{ // thread find blockquote
const threadid= threadfind.attr('id')
console.log(threadid)
}
})
<?php
$k=3;
$array = array(
'unused',
'first_element',
'second_element',
'third_element'
);
for ($i=1; $i<=$k; $i++) {
echo '<input type="text" name="'.$array[$i].'" onfocus="document.getElementById(\'divid\').innerHTML=this.value" onkeyup="this.onfocus()">';
}
?>
<div id="divid">
content1
</div>
server {
root /var/www/php/public; # Здесь находится index.php
index index.php index.html index.htm index.nginx-debian.html;
server_name localhost;
location = / { # Здесь хочу отдать index.html
root /var/www/static; # здесь физически находится index.html
try_files /index.html =404;
}
location / { # Здесь хочу обрабатывать остальные запросы, как обычно
try_files $uri $uri/ /index.php?$query_string;
}
}