在php中添加前导0

我有

>教程1如何制作这个
>教程21如何制作这个
>教程2如何制作这个
>教程3如何制作这个

我需要

> tutorial 01如何制作这个
>教程21如何制作这个
>教程02如何制作这个
>教程03如何制作本

所以我可以正确地订购它们. (找到单个数字时添加前导0)

什么是转换的PHP方法

提前致谢

请注意 – 请确保它首先识别单个数字,然后添加前导零

如果它来自数据库,这是在SQL查询上执行此操作的方法
lpad(yourfield,(select length(max(yourfield)) FROM yourtable),'0') yourfield

这将获得表中的最大值并放置前导零.

如果是硬编码(PHP),请使用str_pad()

str_pad($yourvar,$numberofzeros,"0",STR_PAD_LEFT);

这是我在在线PHP编译器上所做的一个小例子,它有效……

$string = "Tutorial 1 how to";

$number = explode(" ",$string); //Divides the string in a array
$number = $number[1]; //The number is in the position 1 in the array,so this will be number variable

$str = ""; //The final number
if($number<10) $str .= "0"; //If the number is below 10,it will add a leading zero
$str .= $number; //Then,add the number

$string = str_replace($number,$str,$string); //Then,replace the old number with the new one on the string

echo $string;

相关文章

Hessian开源的远程通讯,采用二进制 RPC的协议,基于 HTTP 传输。可以实现PHP调用Java,Python,C#等多语...
初识Mongodb的一些总结,在Mac Os X下真实搭建mongodb环境,以及分享个Mongodb管理工具,学习期间一些总结...
边看边操作,这样才能记得牢,实践是检验真理的唯一标准.光看不练假把式,光练不看傻把式,边看边练真把式....
在php中,结果输出一共有两种方式:echo和print,下面将对两种方式做一个比较。 echo与print的区别: (...
在安装好wampServer后,一直没有使用phpMyAdmin,今天用了一下,phpMyAdmin显示错误:The mbstring exte...
变量是用于存储数据的容器,与代数相似,可以给变量赋予某个确定的值(例如:$x=3)或者是赋予其它的变...