当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP Imagick getRegistry()用法及代码示例


Imagick::getRegistry()函数是PHP中的内置函数,用于获取命名键的StringRegistry条目,如果未设置,则返回false。

用法:

string Imagick::getRegistry( string $key )

参数:该函数接受一个包含键的参数$key。


返回值:此函数返回包含与键关联的值的字符串值。

异常:该函数在错误时引发ImagickException。

下面给出的程序说明了PHP中的Imagick::getRegistry()函数:

程序1:

<?php 
  
// Create a new imagick object 
$imagick = new Imagick( 
'https://media.geeksforgeeks.org/wp-content/uploads/20190918234528/colorize1.png'); 
  
// Get the Registry 
$registry = $imagick->getRegistry('key'); 
echo $registry; 
?>

输出:

// Empty string because no registry with key as 'key' is set.

程序2:

<?php 
  
// Create a new imagick object 
$imagick = new Imagick( 
'https://media.geeksforgeeks.org/wp-content/uploads/20190918234528/colorize1.png'); 
  
// Set the Registry 
$imagick->setRegistry('key', 'my_value'); 
  
// Get the Registry 
$registry = $imagick->getRegistry('key'); 
echo $registry; 
?>

输出:

my_value

参考: https://www.php.net/manual/en/imagick.getregistry.php



相关用法


注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | Imagick getRegistry() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。