$users


Users Methods

$users->add("name")

Introduced in Version 2.0

Description

Add new User with the given name and return it.

Examples

Add a user called fred and echo the newly-created page ID for this user

$item = $users->add("fred");
echo $item->id;

Related

Post Comment