CASClient PHP Module
CASClient is a light-weight PHP implementation of a Central
Authentication Service client. When used with a CAS server,
such as Princeton's new SignOn service, it
provides a secure way for users to authenticate to your
application.
- Download CASClient.php v1.1
- View demonstration
Sample usage:
require 'CASClient.php'; $C = new CASClient(); $netid = $C->Authenticate(); echo "Howdy, $netid.";