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.
stdClass Object([jobid] => 1)stdClass Object([jobid] => 2)を表示するのはなぜですか
値1と2の代わりに
<?php foreach($RowTable as $row) { print_r($row, false);?> } ?>
ドキュメントを見てください:
print_r() は、人間が読める方法で変数に関する情報を表示します。
値を出力する場合は、を使用しますecho $row->jobid;。
echo $row->jobid;