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.
我试图弄清楚如何显示数组中的某个部分。我需要向用户展示这一点。例如:
Array ( [id] => 11 [login] => 1 [myusername] => lepel100)
是什么print_r显示。我只想显示登录。
print_r
这可能吗?如果是这样,谁能告诉我怎么做?
是的,只需使用:
echo $arrayName['login']
或者如果它是一个$_SESSION变量:
$_SESSION
echo $_SESSION['login']
嗨,如果您在会话中有它,您可以通过 $_SESSION["id"] (如果那是您的密钥)或 $_SESSION["myusername"] 访问它
这是另一个解决方案:
extract($_SESSION); echo $login;