string 转换为 int 的性能

发布于 2024-12-05 01:20:59 字数 196 浏览 0 评论 0原文

如果我有刺痛,

$str = '515';

想将其转换为 int,那么使用

$str = $str * 1;

比使用

$str = intval($str);

哪种性能更好?

If i have sting like

$str = '515';

I want convert it to int, is better use

$str = $str * 1;

than use

$str = intval($str);

which performance is better?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

So尛奶瓶 2024-12-12 01:20:59

当你使用$str = $str * 1时,$str会先转换为整数,然后加1,所以多了一步。

此外, $str = intval($str);$str = $str * 1; 更具可读性,

您也可以使用 $ 进行强制转换str = (int)$str.

When you use $str = $str * 1, $str will first cast into an integer then plus 1, so it is one step more.

Besides, $str = intval($str); is much more readable than $str = $str * 1;,

You could also just use casting by $str = (int)$str.

帅哥哥的热头脑 2024-12-12 01:20:59

使用 (int) 转换值应该是最快的选项,因为 intval() 调用一个函数(性能开销很小),

$str = (int)$str;

请参阅 http://wiki.phpbb.com/Best_Practices:PHP#Typecasting 了解更多信息

Casting the value using (int) should be the quickest option as intval() invokes a function (which has a small performance overhead)

$str = (int)$str;

see http://wiki.phpbb.com/Best_Practices:PHP#Typecasting for more information

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文