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 中,使用该user_is_logged_in函数时出现以下错误。你能帮我解决吗?我想将 PHP 文件与 Drupal 集成。
user_is_logged_in
解决方案:“PHP 过滤器”模块提供了将 HP 代码与 Drupal 集成的解决方案。 启用“PHP过滤器”->在节点中添加PHP代码->选择“PHP代码”而不是完整HTML->保存
使用 Drupal 7
而不是使用 user_is_logged_in(),请尝试以下操作:
global $user; if($user->uid) { // execute some code }