$('#php_set_cookie').html('zz');
$ma = "2+10";
if(preg_match('/(\d+)(?:\s*)([\+\-\*\/])(?:\s*)(\d+)/', $ma, $matches) !== FALSE){
$operator = $matches[2];
switch($operator){
case '+':
$p = $matches[1] + $matches[3];
break;
case '-':
$p = $matches[1] - $matches[3];
break;
case '*':
$p = $matches[1] * $matches[3];
break;
case '/':
$p = $matches[1] / $matches[3];
break;
}
echo $p;
}
https://api.weather.yandex.ru/v1/forecast?geoid=2&lang=ru
User-Agent: yandex-weather-android/4.2.1
X-Yandex-Weather-Client: YandexWeatherAndroid/4.2.1
X-Yandex-Weather-Device: os=null;os_version=21;manufacturer=chromium;model=App Runtime for Chrome Dev;device_id=[DEVICE ID];uuid=[UUID];
X-Yandex-Weather-Token: [TOKEN]
X-Yandex-Weather-Timestamp: [TIMESTAMP]
X-Yandex-Weather-UUID: [UUID]
X-Yandex-Weather-Device-ID: [DEVICE ID]
Accept-Encoding: gzip, deflate
Host: api.weather.yandex.ru
Connection: Keep-Alive
md5(secret.concat(timestamp))
получать через file_get_contents ссылку url
Правильно ли, что для этой задачи надо купить VPS/VDS сервак? 1 ядро и 1Гб памяти будет достаточно?
A machine with 64 GB of RAM is the ideal sweet spot, but 32 GB and 16 GB machines are also common. Less than 8 GB tends to be counterproductive (you end up needing many, many small machines), and greater than 64 GB has problems
Лучше всего мой сайт загрузить на этот VPS и через nginx к нему по localhost подключаться или можно оставить прежний хостинг и по IP моего VPS к нему подключаться?
Достаточно ли 1 VPS купить для данного рода задачи с 1 млн+ документов или надо несколько взять и как-то распределить нагрузку? 1 node = 1 VPS или на 1 VPS я могу много nodes устанавливать?