$path_to_file = 'file1.html';
$new_file = 'file2.html';
$folder = 'myfolder';
$file_contents = file_get_contents($path_to_file);
$file_contents = str_replace("текст","текст2",$file_contents);
if (!file_exists($folder)) {
mkdir($folder, 0777, true); // создание папки, если ее нет
}
$save_to = $folder . '/' . $new_file; // соединяем 2 переменных папка + / + файл
file_put_contents($save_to,$file_contents);
import requests
r = requests.get('https://ramziv.com/ip',
proxies=dict(http='socks5://104.248.63.15:30588',
https='socks5://104.248.63.15:30588')).text
print(r)
bot.send_message(chat_id, 'У нас как раз есть Ferrari F12 Berlinetta 2012 года 6.3-литровый V12 за 100.000$. Подходит?\nhttps://imbt.ga/HEHQvjICjm')
marka_auto = 'Ferrari F12 Berlinetta'
price = '100.000$'
photo = 'https://imbt.ga/HEHQvjICjm'
bot.send_message(chat_id, f'У нас как раз есть {marka_auro} 2012 года 6.3-литровый V12 за {price}. Подходит?\n{photo}')
bot.send_message(chat_id, 'У нас как раз есть Ferrari F12 Berlinetta 2012 года 6.3-литровый V12 за 100.000$. Подходит?\nhttps://imbt.ga/HEHQvjICjm')
и при обновлении страницы, очевидно, подгружается первым делом main.css, а после dark.css и на пол секунды видно, что body белого цвета.