<?php
string public static Imagick::getCopyright();
?>
<?php
// Run this exercise to see the Copyright notice
echo Imagick::getCopyright();
?>
<?php
// Another way to view Copyright
$imag = new Imagick();
echo $imag->getCopyright();
?>