如何在PHP删除字符串中的所有前导零?
给定一个字符串格式的数字,任务是从PHP的给定字符串中删除所有前导零。
例子:
Input : str = 00006665555
Output : 6665555
Input : str = 00775505
Output : 775505
方法 1:使用 ltrim()函数: ltrim()函数用于从字符串的左侧删除空格或其他字符(如果指定)。
句法:
ltrim( "string", "character which to be remove from the left side of string");
程序:
输出:
775505
方法2:首先将给定的字符串转换为数字,将字符串类型转换为int,这将自动删除所有前导零,然后再次将其转换为字符串,使其再次成为字符串。
程序:
输出:
775505