<?php
// Universe Array demonstrator script
// script © 2021 Willtech
// v0.1 hand coded by HRjJ
//Load array
//X Co-ordinate
for ($X = 1; $X <= 9; $X++) {
//Y Co-ordinate
for ($Y = 1; $Y <= 9; $Y++) {
//Z Co-ordinate
for ($Z = 1; $Z <= 9; $Z++) {
//Time Co-ordinate
for ($T = 1; $T <= 9; $T++) {
//array scale t-1 {local relative scale of space-time} is not computed here
//$S is hard coded as 1 until computational data is available
$S = 1;
//array co-ordinate scale usually shown as t^-1 is fixed to the scale of the singularity
$t = 1;
//array contains contents of co-ordinate data $S,location,location,location,location,location,location,location,location,location
//using co-ordinate mathematics -n can be expanded to be (x,y,x)=Cm
$Uni[$t][$T][$Z][$Y][$X] = array(1,"1^(-n)");
}
}
}
}
//$Uni[1][1][5][5][5] = array(1,0);
//$Uni[1][9][5][5][5] = array(1,0);
//for ($X = 1; $X <= 9; $X++) {
//for ($Y = 1; $Y <= 9; $Y++) {
//for ($Z = 1; $Z <= 9; $Z++) {
//for ($T = 1; $T <= 9; $T++) {
//$t = 1;
//}
//}
//}
//}
//Output array string
$Array = json_encode($Uni);
echo $Array;
?>