方法:1、用“trim($str,"0")”,可去掉字串兩端的0;2、用“str_replace("0","",$str)”,可去除字串的全部0;3、用“substr_replace($str,"",位置值,1)”,可去除指定位置的0。
本教學操作環境:windows7系統、PHP7.1版、DELL G3電腦
php去掉字串的0
1、使用trim()函數
利用trim()函數可以去掉字串兩端的0
<?php header('content-type:text/html;charset=utf-8'); $str = "0dfd0125e0reg0"; echo "原字符串:".$str; echo "<br>处理后:".trim($str,"0"); ?>
2、使用str_replace()函數
#利用str_replace()函數可以移除字串中的全部0
<?php header('content-type:text/html;charset=utf-8'); $str = "0dfd0125e0reg0"; echo "原字符串:".$str; echo "<br>处理后:".str_replace("0","",$str); ?>
#3、使用substr_replace() 函數
#利用substr_replace() 函數可以移除字串指定位置的0
<?php header('content-type:text/html;charset=utf-8'); $str = "0dfd0125e0reg0"; echo "原字符串:".$str."<br><br>"; echo "去除开头的0:".substr_replace($str,"",0,1)."<br><br>"; echo "去除末尾的0:".substr_replace($str,"",-1,1)."<br><br>"; echo "去除第5字符0:".substr_replace($str,"",4,1)."<br><br>"; echo "去除第10字符0:".substr_replace($str,"",9,1)."<br><br>"; ?>
推薦學習:《PHP影片教學》
以上是php怎麼去掉字串的0的詳細內容。更多資訊請關注PHP中文網其他相關文章!