次の結果は警告を返します。range ()は少なくとも2つのパラメーターを想定しており、1つが指定されています。
それを理解することはできません。提案は大歓迎です。
**<?php
echo acct_type(110);
function acct_type($acct_no)
{ $sections = array(
'Current Asset' => '100,149',
'Fixed Asset' => '150,159',
'Accumulated Depreciation' => '160,169',
'Current Liability' => '200,249',
'Long Term Liability' => '250,299',
'Equity' => '300,399',
'Revenue' => '400,499',
'Cost of Goods Sold' => '500,599',
'Expense' => '600,699'
);
foreach($sections as $section => $range)
{ if(in_array($acct_no, range($range))) return $section;
}
}
?>**