= 0; ) {...}"."/> = 0; ) {...}".">

Heim  >  Artikel  >  Backend-Entwicklung  >  Was bedeutet Miltiply in PHP?

Was bedeutet Miltiply in PHP?

藏色散人
藏色散人Original
2022-11-08 10:26:091677Durchsuche

Wenn das Wort miltiply in einer PHP-Bibliotheksfunktion vorkommt, bedeutet es normalerweise „Multiplikation“. Wenn es von einem Entwickler angepasst wird, hängt es von der Absicht des Entwicklers ab und davon, ob der Wortlaut angemessen ist folgt „functionmul($a,$b){$lenA=strlen($a);$lenB=strlen($b);$result= '0';for($inxA=$lenA- 1;$inxA>= 0 ; ) {...}".

Was bedeutet Miltiply in PHP?

Die Betriebsumgebung dieses Tutorials: Windows 7-System, PHP-Version 8.1, Dell G3-Computer.

Was bedeutet Miltiply in PHP?

Wenn dieses Wort in einer PHP-Bibliotheksfunktion vorkommt, bedeutet multiplizieren normalerweise „Multiplikation“.

Wenn es angepasst wird, hängt es von der Absicht des Autors ab und davon, ob der Wortlaut angemessen ist.

Zum Beispiel:

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= &#39;0&#39;;

    for($inxA=$lenA- 1;$inxA>= 0; --$inxA) {

        $re= &#39;&#39;;

        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= &#39;&#39;;

    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;

}

?>

Empfohlenes Lernen: „PHP-Video-Tutorial

Das obige ist der detaillierte Inhalt vonWas bedeutet Miltiply in PHP?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn