Friday, 8 February 2019

PHP: add word on every end of word

<?php
$text = "The quick brown fox jumped over the lazy dog.";
$newtext = wordwrap($text, 5, "%20\n");

echo $newtext;
?>

Chatbot Telegram development

🔹 FLOW BOT (berdasarkan code kau) 1. Update masuk dari Telegram Bot terima JSON dari php://input . Extract: chat_id firstname ...