I am using a template of a "certificate of completion" for online courses for my website.
On the template it has placeholder function names where presumably values would be pulled from database or elsewhere.
For example:
Certificate of Completion
This is to certify that
$student.getFullName()
has completed the course
$course.getName()
with score of $grade.getPoints()%
To my understanding you cannot use a period in the middle of a PHP variable of function name. Can someone explain what this convention is [ i.e. $student.getFullName() ] and whether it is valid PHP or just some invalid pseudocode?