<?php

$re = '~\b\p{L}(?:\h+\p{L}){2,}\b(?![\s\p{P}]*$)~u'; 
$str = "Lorem i p s u m dolor sit a m e t, consectetur adipiscing e l i.";
preg_match_all($re, $str, $matches);
print_r($matches[0]);