【PHP】文字列先頭のゼロを全て取り除く方法。

ゼロパディングの逆バージョン。

$str = '000023';
$result = ltrim($str, '0');
var_dump($result);

上記の場合「23」という結果を得られる。