If tutorials available on this website are helpful for you, please whitelist this website in your ad blocker😭 or Donate to help us ❤️ pay for the web hosting to keep the website running.
PHP एक error control operator - at sign (@)
को भी support करती है , इसे sign को किसी expression से पहले prepend किया जाता है, और अगर उस expression में कोई diagnostic error generate हुई तो suppress / ignore हो जाएगी।
For Example
<?php
$x = $arr[0];
// Error : PHP Warning: Trying to access array offset on value of type null.
?>
ऊपर दिए गए example में अगर , कोई Array variable define नहीं है still उसे access करने का try किया तो कुछ इस तरह से error आयी। इससे बचने के लिए आप simply @
prepend कर सकते हैं।
जैसे
<?php
$x = @$arr[0];
?>
अब error तो control हो गयी , लेकिन अब अगर आपको error message पता करना है तो आप error_get_last()
function को call कर सकते हैं जो last error के बारे men एक Associative Array return करता है।
<?php
$x = @$arr[0];
print_r(error_get_last());
?>
Output
Array ( [type] => 2 [message] => Trying to access array offset on value of type null [file] => C:\Users\verma\Desktop\test.php [line] => 2 )
अब इस array से message key को आप easily access करके error message print करा सकते हैं।
Internally @
operator , उस particular line के लिए error reporting level 0
set करता है , जिससे सिर्फ warning और parse error ही ignore होती हैं। हालाँकि Fatal Error को इससे नहीं रोका जा सकता है।
जैसे कि नीचे दिए गए example में undefined function test()
को call किया गया।
<?php
$x = @test();
// Fatal error: Uncaught Error: Call to undefined function test()
?>
जहाँ तक हो सके Error Control Operator @ का use कम ही करें , इससे execution और performance slow होता है , हालाँकि आप need के according variables को एक default value set कर सकते हैं।
Loading ...