Results 2 comments of bada

哦, 是先检查block, 检查完后再同步,我这先让后台运行,运行完看看吧.

startsWith和endsWith方法提供 ``` if(!function_exists('startsWith')){ function startsWith($haystack, $needle) { $length = strlen($needle); return (substr($haystack, 0, $length) === $needle); } } if(!function_exists('endsWith')){ function endsWith($haystack, $needle) { $length = strlen($needle); return $length === 0...