📜  PHP |想象一下 getImageAttribute()函数

📅  最后修改于: 2022-05-13 01:56:36.148000             🧑  作者: Mango

PHP |想象一下 getImageAttribute()函数

Imagick::getImageAttribute()函数是PHP中的一个内置函数,用于获取键的命名属性。

句法:

string Imagick::getImageAttribute( string $key )

参数:此函数接受单个参数$key ,它以字符串格式保存键值。

返回值:此函数在成功时返回一个字符串值。

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

方案一:

getImageAttribute('hello');
  
echo $attribute;
?>

输出:

Empty string as it is the default value. 

方案二:

setImageAttribute('hello', 'world');
  
// Get the attribute with key 'hello'
$attribute = $imagick->getImageAttribute('hello');
  
echo $attribute;
?>

输出:

world

参考: https://www. PHP.net/manual/en/imagick.getimageattribute。 PHP