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.
我有一个drupal模板。我想知道使用 php 的活动变量的名称是什么。我该如何实现?
如果您只是想获取已定义的变量,可以使用 PHP 的函数get_defined_vars:
get_defined_vars
print_r(get_defined_vars());
http://php.net/manual/en/function.get-defined-vars.php
如果您在 Drupal 之后的全局变量,那么它们就在这里......
http://api.drupal.org/api/drupal/globals/7