Skip to content

Instantly share code, notes, and snippets.

@mishajib
Created September 4, 2020 17:59
Show Gist options
  • Save mishajib/2e9821adef0e90b14191105d7d836853 to your computer and use it in GitHub Desktop.
Save mishajib/2e9821adef0e90b14191105d7d836853 to your computer and use it in GitHub Desktop.
PHP For Loop Multiple Steping
<?php
<?php
# Author - MI SHAJIB
#===============================
# MULTIPLE STEPING IN FOR LOOP
#===============================
for ($i = 10, $j = 1; $i > 0; $i--, $j++) {
echo $i . ":" . $j;
echo PHP_EOL;
}
/*
output:
10:1
9:2
8:3
7:4
6:5
5:6
4:7
3:8
2:9
1:10
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment