PHP CAS Example
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748<?php /** * Example for a simple cas 2.0 client * Taken from the official CAS example * PHP 5.4.0, CAS 1.3.0 */ // Load the CAS lib require_once ‘CAS.php’; …