PHP |想象一下 getRegistry()函数
Imagick::getRegistry()函数是PHP中的一个内置函数,用于获取命名键的 StringRegistry 条目,如果未设置则为 false。
句法:
string Imagick::getRegistry( string $key )
参数:此函数接受一个包含密钥的参数$ key。
返回值:此函数返回一个字符串值,其中包含与键关联的值。
异常:此函数在出错时抛出 ImagickException。
下面给出的程序说明了PHP中的Imagick::getRegistry()函数:
方案一:
getRegistry('key');
echo $registry;
?>
输出:
// Empty string because no registry with key as 'key' is set.
方案二:
setRegistry('key', 'my_value');
// Get the Registry
$registry = $imagick->getRegistry('key');
echo $registry;
?>
输出:
my_value
参考: https://www. PHP.net/manual/en/imagick.getregistry。 PHP