?????????????????????????
???????????? ???????[ 2012/12/20 11:30:50 ] ????????
????????????????????????????????????????????????????????????£?????????????????????????????????????????????????????????????????δ??????????????????
??????????????????????????????????????????????????????????????????????????ò???????????????????????????????????????????????????????????
???????????????????????????????????????????
???????????????????????????????????test driven development (TDD)???????????????????????????????????????????????????????????????????
???????裬????????????????lz_array_merge($new?? $old)?????????????????$new?????????????????????????$old???顣??????汾???????????????????????????????
?????????????????????????????????????
???????????????2??????????????????????????????У???????С??????????????ò????????????????????????????С?????????????????????????????????????????????
???????
?????????????????$new??????飬?????????????顣
???????????
<?php
include(‘underTestFile.php’);
$new = array();
$old = array(
'apple' => 60
'banana' => 100??
);
$ret = lz_array_merge($new?? $old);
print_r($ret);
?>
???????????????????顣
??????????????д????????????????÷????????????????????????????????????????????????????????????е??????д??
<?php
function lz_array_merge($new?? $old)
{
if(count($new) == 0)
return array();
}
?>
?????????
?????????????????????????????е?????????
?????????????????$old????????????????顣
????????????ж???????????????$new?????????????????????????????????????????壬?????$new??????$old???????ν??????????????$new?????$old?????????????????????????????????????
???????????
<?php
include(‘underTestFile.php’);
$new = array(
'apple' => 60
'banana' => 100??
);
$old = array();
$ret = lz_array_merge($new?? $old);
print_r($ret);
?>
???????????????????
??????????????????ü??????????????????????????????????????????????????????????????
????????????
<?php
function lz_array_merge($new?? $old)
{
if(count($new) == 0)
return array();
if(count($old) == 0)
return array();
}
?>
??????????£?????????????????????????????????????????????°?????????????review???????д?????????????п?????????????????????????飬???????????????Щ?????????????????????????????
<?php
function lz_array_merge($new?? $old)
{
if(count($new) == 0 || count($old) == 0)
return array();
}
?>
??????????в??????????????????????????°?????????????????????????????????????
??????
???·???
??????????????????
2023/3/23 14:23:39???д?ò??????????
2023/3/22 16:17:39????????????????????Щ??
2022/6/14 16:14:27??????????????????????????
2021/10/18 15:37:44???????????????
2021/9/17 15:19:29???·???????·
2021/9/14 15:42:25?????????????
2021/5/28 17:25:47??????APP??????????
2021/5/8 17:01:11