SarkariResultess QA Bank

PHP variable का exact type check करने के लिए क्या उपयोगी है? में developers की common mistake क्या है?

Other 0 Views Verified
PHP variable का exact type check करने के लिए क्या उपयोगी है? में developers की common mistake क्या है? सही विकल्प चुनें और code/solution को समझें।
Sarkari Result QA Bank
Editorially reviewed exam information

Answer & Explanation

4 Answers
Verified

type_is($value,'int')

type_is($value,'int')
Additional Explanation
यह विकल्प सही Core PHP solution नहीं है।
Verified

check_integer($value)

check_integer($value)
Additional Explanation
यह विकल्प सही Core PHP solution नहीं है।
Verified

integer_only($value)

integer_only($value)
Additional Explanation
यह विकल्प सही Core PHP solution नहीं है।
Verified Correct Answer

is_int($value)

is_int($value)
Additional Explanation
is_* functions common type checks देते हैं।