This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, visit the help center




已关闭10年。




我有一个脚本,可以在其中使用substr()str_replace()。使用substr(),我只需要截断最后一个字符,而使用str_replace,则无需替换!。哪一个会更快?

我猜substr()吗?

最佳答案

我对PHP源代码不熟悉,但是我肯定使用substr(),因为它可以直接跳转到定义的偏移量。

不要忘记,这只会对大量数据有所帮助。对于较小的字符串,最好选择使可读性更好的代码。

关于php - 哪个功能更快? substr()或str_replace()?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5193995/

10-13 07:41