私は Joomla 2.5.16 を使用しており、現在のユーザー ID とグループ ID が必要です。
次のコードは空白のページを返します。なぜですか?
<?php
include_once $_SERVER['DOCUMENT_ROOT']."/includes/defines.php";
include_once $_SERVER['DOCUMENT_ROOT']."/includes/framework.php";
$user = JFactory::getUser();
$group_id = &JFactory::group_id();
$user_id = $user->get('id');
echo $user_id;
echo $group_id;
?>