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.
'lang'という名前のCookieを設定しました。ブラウジング中に現在の言語によって値が割り当てられます。しかし、どうすれば現在の言語でテキストを表示できますか?
試す -
if($_COOKIE["lang"]=='dutch'){ $text='dutch text'; } elseif($_COOKIE["lang"]=='german'){ $text='german text'; } elseif($_COOKIE["lang"]=='french'){ $text='french text'; } echo $text;