How can one verify if a local WAMP server supports Imagick functions in PHP?

To verify if a local WAMP server supports Imagick functions in PHP, you can create a simple PHP script that checks for the Imagick extension. This script will output whether or not Imagick is enabled on the server.

<?php
if (extension_loaded('imagick')) {
    echo 'Imagick is enabled on this server.';
} else {
    echo 'Imagick is not enabled on this server.';
}
?>