LeetCode 最长公共前缀
class Solution {
/**
* @param String[] $strs
* @return String
*/
function longestCommonPrefix($strs) {
$curIndex = 0;
$resStr = '';
// 取第一个字符串长度为最大循环次数
$times = strlen($strs[0]);
for($i=0;$i<$times;$i++){
$temp = $strs[0][$i];
foreach($strs as $oneStr){
if($temp != $oneStr[$i]){
return $resStr;
}
}
$resStr .= $temp;
}
return $resStr;
}
}