l*****a 发帖数: 559 | 1 请帮忙看看这段php代码有什么错误?
只用过php写网站,了解的不深入。
麻烦大家了。
原题描述是
what is wrong with the code and how to
fix it?
$bob = array('bob1','bob2','bob3');
foreach($bob as &$v){
$v = ucwords($v);
}
$billAndSue = array('bill1','bill2','sue','bill3');
foreach($billAndSue as $v){
if(preg_match('@bill@',$v)){
$bill[] = $v;
}else{
$sue[] = $v;
}
}
?> | s*********t 发帖数: 1663 | 2 没错误啊。。
能运行
【在 l*****a 的大作中提到】 : 请帮忙看看这段php代码有什么错误? : 只用过php写网站,了解的不深入。 : 麻烦大家了。 : 原题描述是 : what is wrong with the code and how to : fix it? : : $bob = array('bob1','bob2','bob3'); : foreach($bob as &$v){ : $v = ucwords($v);
| l*****a 发帖数: 559 | 3 所以我真的不知道recruiter要我干什么。
想必我问他要答案,他也不会给我。
【在 s*********t 的大作中提到】 : 没错误啊。。 : 能运行
| s*********t 发帖数: 1663 | 4 cmft, recruiter也不知道这是啥,估计把答案给你了
【在 l*****a 的大作中提到】 : 所以我真的不知道recruiter要我干什么。 : 想必我问他要答案,他也不会给我。
|
|