
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Double Not Operator in PHP
In the Double not operator (!!), the first not i.e. ! is used to negate a value, whereas the second not i.e.! again negates. To implement Double not operator in PHP, the code is as follows−
Example
<?php $str = "0.1"; echo "Value = $str"; $res = !!$str; echo "
Double Negated Value = $res"; ?>
Output
This will produce the following output−
Value = 0.1 Double Negated Value = 1
Example
Let us now see another example −
<?php $str = "100.56"; echo "String = $str"; $num = floatval($str); echo "
Number (Converted from String) = $num"; $res = !!$num; echo "
Double Negated Value = $res"; ?>
Output
This will produce the following output−
String = 100.56 Number (Converted from String) = 100.56 Double Negated Value = 1
Advertisements