I need your help to solve this problem, I am trying to write the necessary code so that the output is as follows:
PHP! PHP!! PHP!!! PHP!!!! PHP!!!!!
<?php
$y = ['!'];
for($i = 1; $i <= 5; $i++)
{   
    print "PHP!"."$y\t";
    if($y+1 <5)
    $y="!";    
    $y+'!';
 }
?>
Until the second word, it adds one more exclamation point and in the rest of the repetitions it has the same number, that is two exclamation points. How can I solve this problem?
 
     
    