Which of these are valid array operators in php?
A,B,C
Correct answer
Explanation
PHP provides several array comparison operators: '' checks if arrays have the same key/value pairs, '=' checks for identical arrays (same key/value pairs in same order and types), and '+' (union operator) merges arrays. The word 'union' itself is not an operator in PHP.