1
は、私はそれらを乗算するための最良の方法は何か二つの配列PHPで配列を乗算する最良の方法は何ですか?
<?PHP
$arr1 = array("a","b","c");
$arr2 = array("1","2","3");
function multiply_arrays($arr1,$arr2){
//what is the best way to do that in terms of speed and memory
return $arr3;
}
?>
を持って言うことができますか?
結果は以下の値を持つ配列でなければなりません:私はのようなエラーに直面したくないので
A1 A2 A3 B1、B2 B3 C1、C2 C3
これは:
Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 39 bytes)
ありがとう
これは数学的にはテンソル積と呼ばれていますが、OPが尋ねているもののプログラミング用語を覚えていません。 –