PHP を使用して txt ファイル データを呼び出し、値を割り当てるコードを探していますホームページ ファイルindex.html 参考ファイル:./txt/pan.txtの3行目:falseまたはyes 変数 $do の値は、pan.txt の 3 行目の値です。 このPHPはどうやって書けばいいのでしょうか? 参照変数 引用テキスト if...else 判決文 共有先: -----解決策--------- $myFile = "./txt/pan.txt"; $lines = file($myFile);//文件放入数组中 $do = $lines[3]; //line 3 if ($do == "false") { echo "false, do ..."; //false的做的事情 } elseif ($do == "yes") { echo "yes, do...."; //yes的时候做的事情 } else { echo "not supported"; //其他值 } ?>ログイン後にコピーログイン後にコピー------解決策----------------------の書き方が間違っていました。4行目です $myFile = "./txt/pan.txt"; $lines = file($myFile);//文件放入数组中 $do = $lines[2]; //line 3 if ($do == "false") { echo "false, do ..."; //false的做的事情 } elseif ($do == "yes") { echo "yes, do...."; //yes的时候做的事情 } else { echo "not supported"; //其他值 } ?> ログイン後にコピーログイン後にコピー 引用: $myFile = "./txt/pan.txt"; $lines = file($myFile);//文件放入数组中 $do = $lines[3]; //line 3 if ($do == "false") { echo "false, do ..."; //false的做的事情 } elseif ($do == "yes") { echo "yes, do...."; //yes的时候做的事情 } else { echo "not supported"; //其他值 } ?>ログイン後にコピーログイン後にコピー-----解決策------------- - ------これはテンプレート言語ですか? ナレッジが出力された場合は、それを変更して「」をエコーするだけで、判断する必要はなく、単に「はい」かどうかを判断します。 Quote:実際、出力はそのような です。 do の値が yes の場合は出力され、false の場合は出力されません。これをどのように実装するか? {query:name=commend_goods as co join=left join goods as go on co.goods_id eq go.id where=co.commend_id eq 1 and go.is_del eq 0 AND go.id is not null fields=go.list_img,go.sell_price,go.name,go.market_price,go.id limit=7 order=id desc group = id} {set:$tmpId=$item['id'];} {$item['name']} RMB{$item['sell_price']} {/query} ログイン後にコピー 引用: 引用: 書き間違えました、4行目です $myFile = "./txt/pan.txt"; $lines = file($myFile);//文件放入数组中 $do = $lines[2]; //line 3 if ($do == "false") { echo "false, do ..."; //false的做的事情 } elseif ($do == "yes") { echo "yes, do...."; //yes的时候做的事情 } else { echo "not supported"; //其他值 } ?> ログイン後にコピーログイン後にコピー