{ "update_id":10000,
"edited_message":{
"date":1441645532,
"chat":{
"last_name":"Test Lastname",
"type": "private",
"id":1111111,
"first_name":"Test Firstname",
"username":"Testusername"
},
"message_id":1365,
"from":{
"last_name":"Test Lastname",
"id":1111111,
"first_name":"Test Firstname",
"username":"Testusername"
},
"text":"Edited text",
"edit_date": 1441646600
}
}
update => message => reply_to_message => text / message_id
$sendToTelegram
$sendToTelegram_chat2 = fopen("https://api.telegram.org/bot{$token}/sendMessage?chat_id={$chat_id_2}&parse_mode=html&text={$lastChars}","r");
if ($sendToTelegram && $sendToTelegram_chat2)
<?php
// Каталог files
$link = 'https://docs.google.com/spreadsheets/id/pub?output=csv';
$uploaddir = './';
$uploadfile = $uploaddir.basename($link);
// Копируем файл в files
if (copy($link, $uploadfile)){
$old = "pub?output=csv";
$new = "google_sheets.csv";
rename($old , $new);
$csvfile = file_get_contents($new);
$csv_edited = str_replace("значение", "новое значение", $csvfile);
file_put_contents($new, $csv_edited);
echo "Файл успешно загружен на сервер";
}
?>
$text = "строка которую нужно удалить/строка которую нужно оставить";
$done = strstr($text, '/');
echo $done;
/строка которую нужно оставить
$path_to_file = 'file1.html';
$new_file = 'file2.html';
$file_contents = file_get_contents($path_to_file);
$file_contents = str_replace("текст","текст2",$file_contents);
file_put_contents($new_file,$file_contents);