複数のメッセージを返したい

LINE Referenceによると5つまで返すことができる

コード例

BOT「Hello」
BOT「world.」

$post_data = array(
    "replyToken" => $reply_token,
    "messages" => array(
      array(
        "type" => text,
        "text" => "Hello",
       ,
       array(
         "type" => text,
         "text" => "world.",
       )
    )
  );