Thursday, September 4, 2025
HomeLanguagesPHP | Imagick getReleaseDate() Function

PHP | Imagick getReleaseDate() Function

The Imagick::getReleaseDate() function is an inbuilt function in PHP which is used to get the release date of ImageMagick.

Syntax:

string Imagick::getReleaseDate( void )

Parameters: This function doesn’t accepts any parameter.

Return Value: This function returns a string value containing the release date.

Exceptions: This function throws ImagickException on error.

Below given programs illustrate the Imagick::getReleaseDate() function in PHP:

Program 1:




<?php
  
// Create a new imagick object
$imagick = new Imagick();
  
// Get the Release date
$releaseDate = $imagick->getReleaseDate();
echo $releaseDate;
?>


Output:

2017-05-23

Program 2:




<?php
  
// Create a new imagick object
$imagick = new Imagick();
  
// Get the Release date
$releaseDate = $imagick->getReleaseDate();
echo date("F j, Y", strtotime($releaseDate));
?>


Output:

May 23, 2017

Reference: https://www.php.net/manual/en/imagick.getreleasedate.php

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32263 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6626 POSTS0 COMMENTS
Nicole Veronica
11799 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11857 POSTS0 COMMENTS
Shaida Kate Naidoo
6749 POSTS0 COMMENTS
Ted Musemwa
7025 POSTS0 COMMENTS
Thapelo Manthata
6696 POSTS0 COMMENTS
Umr Jansen
6716 POSTS0 COMMENTS