<?php
error_reporting(-1);

$text = "roses are red,and violets are blue.whatever you do i'll keep it for you.";
$dividedLine = preg_split("/(?<=[.])/",$text,0,PREG_SPLIT_NO_EMPTY);
print_r($dividedLine);
