7. PHP Array Operators:-
PHP Array Operators का Use Array पर operation perform करने के लिए किया जाता है । ये operator Array को compare भी करते है
Operator |
Name |
Example |
Result |
+ |
Union |
$x + $y |
Union of $x and $y |
== |
Equality |
$x == $y |
True if $x and $y have the same key/value pairs |
=== |
Identity |
$x === $y |
True if $x and $y have the same key/value pairs in the same order and of the same types |
!= |
Inequality |
$x != $y |
True if $x is not equal to $y |
<> |
Inequality |
$x <> $y |
True if $x is not equal to $y |
!== |
Non-identity |
$x !== $y |
True if $x is not identical to $y |

Figure:-1 PHP array Operator code
उपरोक्त program को किसी भी browser पर run करने पर तथा निम्न output show होता है।

Figure:-1 php array operator output