gpt4 book ai didi

php - 列出所有 PHP 变量

转载 作者:IT王子 更新时间:2023-10-29 00:50:14 27 4
gpt4 key购买 nike

是否可以在 PHP 脚本中转储所有全局变量?假设这是我的代码:

<?php
$foo = 1;
$bar = "2";
include("blah.php");
dumpall();
// displays $foo, $bar and all variables created by blah.php

此外,是否可以在 PHP 脚本中转储所有定义的常量。

最佳答案

使用 get_defined_vars和/或 get_defined_constants

$arr = get_defined_vars();
print_r($arr);

关于php - 列出所有 PHP 变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5101942/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com