<?php

$str = 'Eli\ is\ beautiful Fran\ is\ ugly Oso\ is\ nice';
$params = preg_split('/(?<!\\\\) /', $str);

var_dump($params);
