<?php


    function splitSentences($text) {
        $re = '/# Split sentences on whitespace between them.
		    (?<=                # Begin positive lookbehind.
		      [.!?]             # Either an end of sentence punct,
		    | [.!?][\'"]        # or end of sentence punct and quote.
		    )                   # End positive lookbehind.
		    (?<!                # Begin negative lookbehind.
		      Mr\.              # Skip either "Mr."
		    | Mrs\.             # or "Mrs.",
		    | Ms\.              # or "Ms.",
		    | Jr\.              # or "Jr.",
		    | Dr\.              # or "Dr.",
		    | Prof\.            # or "Prof.",
		    | Vol\.             # or "Vol.",
		    | A\.D\.            # or "A.D.",
		    | B\.C\.            # or "B.C.",
		    | Sr\.              # or "Sr.",
		    | T\.V\.A\.         # or "T.V.A.",
		                        # or... (you get the idea).
		    )                   # End negative lookbehind.
		    \s+                 # Split on whitespace between sentences.
		    /ix';

        $sentences = preg_split($re, $text, -1, PREG_SPLIT_NO_EMPTY);
        return $sentences;
    }
    
$sentences = 'Entertainment media properties. Fairy Tail and Tokyo Ghoul.';

$sentences = splitSentences($sentences);

print_r($sentences);