Heim >Backend-Entwicklung >PHP-Tutorial > PHP string函数小结

PHP string函数小结

WBOY
WBOYOriginal
2016-06-13 13:02:28784Durchsuche

PHP string函数总结

PHP string函数总结

?

==================================

ceil、floor、round、/、%

?

float ceil ( float $value )向上去整(进一)
??? cout(1.8)=>2
??? cout(-1.8)=>2-1

float floor ( float $value )向下去整(舍去)
??? floor(1.8)=>1
??? floor(-1.8)=>-2

round对浮点数进行四舍五入

float round ( float $val [, int $precision ] )
??? echo? round ( 1.95583 ,? 2 );?? //?1.96
??? echo? round ( 1241757 ,?- 3 );? //?1242000
=================================

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn