????????????????????????????????????????????????????????????£?????????????????????????????????????????????????????????????????δ??????????????????

??????????????????????????????????????????????????????????????????????????ò???????????????????????????????????????????????????????????

???????????????????????????????????????????

???????????????????????????????????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();
}
?>


??????????в??????????????????????????°?????????????????????????????????????