Substr(): Bir metin içindeki belli bir karakter grubunu almayı sağlar.
<?php
$metin="Personel Home Page";
echo substr($metin,9);
?>
Sonuç: Home Page yazar.
----
<?php
$metin="Personel Home Page";
echo substr($metin,9,4);
?>
Sonuç: Home yazar.