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.
私はprint_r($links[1]);以下をページに返すために使用しています:
print_r($links[1]);
Array ( [0] => lol [1] => this [2] => is [3] => a [4] => freaking [5] => test )
0: "lol" のみの値を取得し、それをページにエコー バックするにはどうすればよいですか?
これは非常に簡単です:
echo $links[1][0];
はい、これは非常に簡単です。
echo $links[0];