ゼロパディングの逆バージョン。
$str = '000023'; $result = ltrim($str, '0'); var_dump($result);
上記の場合「23」という結果を得られる。