3

私はPHPを学んでいて、コードを正しく書く方法について苦しんでいます。スペースで区切られた数行の座標(PT#Northing Easting)であるユーザー入力を受け入れるテキストエリアがあります。

フォームにtextarea入力をphpスクリプトに渡して処理させます。

foreachループを取得して、自分が望むことを正確に実行できますが、foreachループのローカルであるだけで、変数はループの外側に渡されません。

私はこれがグローバル変数スコープの問題であることを知っています、私の人生のために私はこれを解決することはできません...

以下は私のPHPコードです。問題なく、textareaが正しく渡されていることを知っているHTMLフォームを省略しました。

**Sample data that I am inputing:
1 728258.24000 774337.29700
2 728232.15735 774277.54650
3 728326.39614 774216.82428**

<?php

$i = 0;
$j = 0;

//The code below explodes my textarea into a string array
//of separated lines.
$textArea = explode("\r", $_POST['textArea']);
$textNum = array();

//The code below works internally, but the values remain here
//I wanted to get them to the variables below so I can do work
//to them.
foreach ($textArea as $textRows) {

    //The code below explode the lines into elements separated by a space
    $textRow = explode(" ", $textRows);
    foreach ($textRow as $textItem) {
    $textNum[i][j] = $textItem;

    //The code below works within a local context
    echo "(" . $i . " " . $j . ")" . $textNum[i][j] . "</br>";
    $j++;
    }
    $i++;
    $j = 0;
}

//The code below is not receiving values from the foreach loop
//I know this has something to do with the variable scope
//I must be way off in my approach any help would be appreciated!
echo "</br>";
echo "</br> 0 0 " . $textNum[0][0];
echo "</br> 0 1 " . $textNum[0][1];
echo "</br> 0 2 " . $textNum[0][2];
echo "</br> 1 0 " . $textNum[1][0];
echo "</br> 1 1 " . $textNum[1][1];
echo "</br> 1 2 " . $textNum[1][2];
echo "</br> 2 0 " . $textNum[2][0];
echo "</br> 2 1 " . $textNum[2][1];
echo "</br> 2 2 " . $textNum[2][2];
echo "</br> 3 0 " . $textNum[3][0];
echo "</br> 3 1 " . $textNum[3][1];
echo "</br> 3 2 " . $textNum[3][2];
?>

私はこれを十分に説明したことを願っています、そして私が得ることができるどんな助けにも感謝します!ありがとう!

4

2 に答える 2

2

2 番目のループにエラーがあります。

$textNum[i][j] = $textItem;

する必要があります:

$textNum[$i][$j] = $textItem;
于 2012-07-02T19:20:19.930 に答える