當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP Imagick getOption()用法及代碼示例


Imagick::getOption()函數是PHP中的內置函數,用於獲取與指定鍵相關聯的值。

用法:

string Imagick::getOption( string $key )

參數:該函數接受單個參數$key,該參數保存選項的名稱。


返回值:此函數返回包含與鍵關聯的值的字符串值。

異常:該函數在錯誤時引發ImagickException。

下麵給出的程序說明了PHP中的Imagick::getOption()函數:

程序1:

<?php 
  
// Create a new imagick object 
$imagick = new Imagick( 
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); 
  
// Get the option with key 'key1' 
$option = $imagick->getOption('key1'); 
echo $option; 
?>

輸出:

//Empty string because it is the default value.

程序2:

<?php 
  
// Create a new imagick object 
$imagick = new Imagick( 
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); 
  
// Set the option 
$imagick->setOption('key1', 'option1'); 
  
// Get the option with key 'key1' 
$option = $imagick->getOption('key1'); 
echo $option; 
?>

輸出:

option1

參考: https://www.php.net/manual/en/imagick.getoption.php



相關用法


注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | Imagick getOption() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。