14 May 2014 | 30 字 | 1 分钟读完
文章目录
1 2 3 4 5 6 7 8 9
function endsWith($haystack, $needle) { $length = strlen($needle); if ($length == 0) { return true; } return (substr($haystack, -$length) === $needle); }
打赏
本文有 次阅读
forecho
把生命浪费在美好的事物上
463 文章
141 标签