I want to program a telegram bot (using PHP) that sends messages at a specific time. So if I did this :
$time = date('h:i a');
if($time == "12:00 pm"){
then send a message or audio or whatever is going to do }
The question is will the file on my host will test the if sentence every single sec? Isn't that will create pressure on the hosting & on the bot? Are there any other alternatives?