标签: php modx
我需要使用用户名在MODx中获取用户对象。或用户名的个人资料。我怎么能这样做?
我知道怎么做id。
我正在使用MODx REvo。
答案 0 :(得分:3)
$user = $modx->getObject('modUser', array( 'username' => $username, )); if ($user) { $profile = $user->getOne('Profile'); }