SHARE
TWEET
Untitled
a guest
Jan 29th, 2018
41
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
- $input = 4;
- for ($i=0; $i<$input; $i++) {
- for($j=0; $j< $input; $j++) {
- $f = ($i < $j) ? $i : $j;
- echo $f+1;
- }
- for($x=($input-1); $x>0; $x--) {
- $l = ($i > $x) ? $x : $i;
- if($i < $x) {
- echo $l+1;
- } else {
- echo $l;
- }
- }
- echo '<br>';
- }
- for ($i=$input; $i>1; $i--) {
- for($j=1; $j<$input; $j++) {
- echo $j;
- }
- echo '<br>';
- }
RAW Paste Data

