Codice PHP:
$array_rs = array();
for(
$i=0;$i<10;$i++)
{
    
$array_rs[$i] = //il valore che devi metterci

Alla fine avrai
in $array_rs[0] il valore che metteresti in $r_s1
in $array_rs[1] il valore che metteresti in $r_s2
in $array_rs[2] il valore che metteresti in $r_s3
...
in $array_rs[9] il valore che metteresti in $r_s10