1. Go to this page and download the library: Download uwdoem/person library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
uwdoem / person example snippets
// Intialize the E_PATH', '/path/to/my/private.key');
define('UW_WS_SSL_KEY_PATH', '/path/to/my/private.key');
define('UW_WS_SSL_CERT_PATH', '/path/to/my/public_cert.pem');
define('UW_WS_SSL_KEY_PASSWD', 'myprivatekeypassword'); // Can be blank for no password: ''
define('UW_WS_VERBOSE', false); // (Optional) Whether to 2009", "summer");
echo $registrations[0]["CurriculumAbbreviation"]; // "TRAIN"
echo $registrations[0]["CourseNumber"]; // "100"
/* Retrieve employee information from the web services */
$employee = Employee::fromUWNetID("jschilz");
echo $employee->getAttr("Department1");
// "Student Financial Aid Office"
echo $employee->getAttr("Title1");
// "Web Developer"
// Queries PWS/SWS for a student with StudentNumber "1033334".
$student = Student::fromStudentNumber("1033334");
// If no such student was found, then $student is null
if ($student != null) {
echo $student->getAttr("RegisteredFirstMiddleName");
}