文字列の先頭から指定した文字列を削除する

コード

<?php
$string = 'Aho';
print ltrim($string, 'A');
?>

出力

ho