Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はこのPHPコードを持っています:
$notIn1 = array_diff($ListData2, $ListData1);
$ListData2および$ListData1変数はデータの配列です。
$ListData2
$ListData1
私は現在、次のようなデータを表示しています:
echo implode('<br>', $notIn1);
しかし、私はそれを表に表示したい
これどうやってするの?
echo '<table>'; foreach($notIn1 as $line) { echo '<tr><td>$line</td></tr>'; } echo '</table>';