php如何int转string?

  • 来源:网络
  • 更新日期:2020-07-16

摘要:php中int转string的方法:首先将int转换为Integer类型;然后再调用toString方法即可,代码为【Intrger i2 = new interger(i);String s3 = i2.toString();】。php中int转string的

php中int转string的方法:首先将int转换为Integer类型;然后再调用toString方法即可,代码为【Intrger i2 = new interger(i);String s3 = i2.toString();】。

php中int转string的方法:

方法一:i加空格法

String s1 = i + " ";

方法二:给i赋值valueof(i)

String s2 = String.valueof(i);

方法三、先转换为Integer类型,在调用toString方法

Intrger i2 = new interger(i);
 String s3 = i2.toString();

方法四:toString法

String s4 = Integer.toString(i);

相关学习推荐:PHP编程从入门到精通