PHPの配列の問題

WBOY
リリース: 2016-06-23 14:04:35
オリジナル
915 人が閲覧しました

配列をダンプしたところ、表示は次のようになります:

array(9) {  [0] => array(6) {    ["que_content"] => string(11) "11111111111"    ["que_id"] => string(1) "1"    ["ops_qid"] => string(1) "1"    ["ops_contentoid"] => string(1) "A"    ["ops_content"] => string(14) "aaaaaaa1111111"    ["ops_count"] => string(1) "3"  }  [1] => array(6) {    ["que_content"] => string(11) "11111111111"    ["que_id"] => string(1) "1"    ["ops_qid"] => string(1) "1"    ["ops_contentoid"] => string(1) "B"    ["ops_content"] => string(10) "bbbbbbbbbb"    ["ops_count"] => string(1) "1"  }  [2] => array(6) {    ["que_content"] => string(11) "11111111111"    ["que_id"] => string(1) "1"    ["ops_qid"] => string(1) "1"    ["ops_contentoid"] => string(1) "C"    ["ops_content"] => string(8) "cccccccc"    ["ops_count"] => string(1) "1"  }  [3] => array(6) {    ["que_content"] => string(9) "222222222"    ["que_id"] => string(1) "2"    ["ops_qid"] => string(1) "2"    ["ops_contentoid"] => string(1) "D"    ["ops_content"] => string(9) "ddddddddd"    ["ops_count"] => string(1) "3"  }  [4] => array(6) {    ["que_content"] => string(9) "222222222"    ["que_id"] => string(1) "2"    ["ops_qid"] => string(1) "2"    ["ops_contentoid"] => string(2) "EF"    ["ops_content"] => string(12) "efe2efef2fef"    ["ops_count"] => string(1) "1"  }  [5] => array(6) {    ["que_content"] => string(9) "222222222"    ["que_id"] => string(1) "2"    ["ops_qid"] => string(1) "2"    ["ops_contentoid"] => string(1) "F"    ["ops_content"] => string(14) "fff32fffffffff"    ["ops_count"] => string(1) "1"  }  [6] => array(6) {    ["que_content"] => string(9) "333333333"    ["que_id"] => string(1) "3"    ["ops_qid"] => string(1) "3"    ["ops_contentoid"] => string(2) "GG"    ["ops_content"] => string(13) "ggg323ggggggg"    ["ops_count"] => string(1) "1"  }  [7] => array(6) {    ["que_content"] => string(9) "333333333"    ["que_id"] => string(1) "3"    ["ops_qid"] => string(1) "3"    ["ops_contentoid"] => string(1) "H"    ["ops_content"] => string(10) "hhh5h5h5h5"    ["ops_count"] => string(1) "2"  }  [8] => array(6) {    ["que_content"] => string(9) "333333333"    ["que_id"] => string(1) "3"    ["ops_qid"] => string(1) "3"    ["ops_contentoid"] => string(1) "J"    ["ops_content"] => string(8) "j8j8j8j8"    ["ops_count"] => string(1) "2"  }}
ログイン後にコピー


このように出力したいのですが、どうすればよいですか?
问题:11111111111选项:A    内容:aaaaaaa1111111选项:B    内容:bbbbbbbbbb选项:C    内容:cccccccc问题:222222222选项:D    内容:ddddddddd选项:EF    内容:efe2efef2fef选项:F    内容:fff32fffffffff问题:333333333选项:GG    内容:ggg323ggggggg选项:H    内容:hhh5h5h5h5选项:J    内容:j8j8j8j8
ログイン後にコピー


ディスカッションへの返信 (解決策)

見ていただくために作成しました:

foreach($a as $v){  if($qid!=$v['ops_qid']){	echo '问题:'.$v['que_content']."<br>";	$qid=$v['ops_qid'];  }else{    echo '选项:'.$v['ops_contentoid'].'     内容'.$v['ops_content']."<br>";  }}
ログイン後にコピー

少し変更されているようです:
コードは次のとおりです:

foreach($a as $v){  if($qid!=$v['ops_qid']){    echo '问题:'.$v['que_content']."<br>";    echo '选项:'.$v['ops_contentoid'].'     内容'.$v['ops_content']."<br>";    $qid=$v['ops_qid'];  }else{    echo '选项:'.$v['ops_contentoid'].'     内容'.$v['ops_content']."<br>";  }}
ログイン後にコピー

if($qid!=$v[' ops_qid'])


$qid とはどういう意味ですか?

$qid は、前のラウンドの ops_qid を保存するために使用される一時変数です。このようにして、新しい問題かどうかを確認できます

nowphp
を #2 に変更する必要があるのは、#1 の else を削除するだけでは十分ではないでしょうか。

$qid は、前のラウンドの ops_qid を保存するために使用される一時変数です。このようにして、新しい問題かどうかを確認できます

nowphp
を #2 に変更する必要があるのは、#1 の else を削除するだけでは十分ではないでしょうか? はい、はい、司会者は気をつけていましたが、私は不注意でした。

関連ラベル:
ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
最新の問題
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート