Display the first 100 characters of a string

$test = "Lorem ipsum dolor sit amet, te eos nemore inimicus tractatos. 
	Probo fabulas scriptorem sea ei, ad vero simul corpora has." 
	
echo substr($test, 0, 100);  
//Lorem ipsum dolor sit amet, te eos nemore inimicus tractatos. Probo fabulas scriptorem sea ei, ad ve
0
0