php-telegram-cli-client
php-telegram-cli-client copied to clipboard
Send Picture with Caption - Update Client.php
Send Picture with Caption
One should probably check if a caption was specified!
I'd suggest to use
public function sendPicture($peer, $path, $caption = false)
and
return $this->exec('send_photo ' . $peer . ' ' . $formattedPath .(($caption !== false)?' ' . $caption:''));