miltiply這個字如果出現在PHP函式庫函數中,通常代表「乘法」的意思;如果是開發者自訂的,要看這個開發者的意圖和是否用字得當,例如自訂的miltiply方法如「functionmul($a,$b){$lenA=strlen($a);$lenB=strlen($b);$result= '0';for($inxA=$lenA- 1;$ inxA>= 0; ) {...}」。
本教學操作環境:windows7系統、PHP8.1版、Dell G3電腦。
miltiply在php中是什麼意思?
如果這個字出現在PHP函式庫函數中,multiply通常代表「乘法」;
如果是自訂的,要看作者的意圖和是否用字得當。
例如:
PHP实现大数相加、大数相乘 最基本的模拟竖式的计算方法: <?php /* multiply * a,b should be numeric * @param $a string * @param $b string * @return string */ functionmul($a,$b) { $lenA=strlen($a); $lenB=strlen($b); $result= '0'; for($inxA=$lenA- 1;$inxA>= 0; --$inxA) { $re= ''; for($i=$inxA+ 1;$i<$lenA; ++$i) { $re= "0" .$re; } $j= 0; for($inxB=$lenB- 1;$inxB>= 0; --$inxB) { $mul= (int)$a[$inxA] * (int)$b[$inxB] +$j; if($mul>= 10) { $j=floor($mul/ 10); $mul=$mul-$j* 10; } else { $j= 0; } $re= (string)$mul.$re; } if($j> 0)$re= (string)$j.$re; $result= add($result,$re); } return$result; } /** * add * a,b should be numeric * @param $a string * @param $b string * @return string */ functionadd($a,$b) { $lenA=strlen($a); $lenB=strlen($b); $j= 0; $re= ''; for($inxA=$lenA- 1,$inxB=$lenB- 1; ($inxA>= 0 ||$inxB>= 0); --$inxA, --$inxB) { $itemA= ($inxA>= 0) ? (int)$a[$inxA] : 0; $itemB= ($inxB>= 0) ? (int)$b[$inxB] : 0; $sum=$itemA+$itemB+$j; if($sum> 9) { $j= 1; $sum=$sum- 10; } else { $j= 0; } $re= (string)$sum.$re; } if($j> 0)$re= (string)$j.$re; return$re; } ?>
推薦學習:《PHP影片教學》
以上是miltiply在php中是什麼意思的詳細內容。更多資訊請關注PHP中文網其他相關文章!