Basic PHP
Which of the below statements is equivalent to $add += $add ?

$add = $add + 1
$add = $add +$add
$add = $add
$add = $add + $add + 1

ANSWER DOWNLOAD EXAMIANS APP