我刚刚开始学习PHP,我一直在练习页面上找到立方体的立方体积。这些信息来自html表单上的提交,我编写了代码,将提交的信息作为变量,但我不完全确定如何设置结果。
这是我到目前为止的代码
<?php
#Script calculates cubic volume
$length=$_POST["length"];
$width=$_POST["width"];
$height=$_POST["height"];
$result=
我只是不确定如何格式化$ result行,以便它正确地乘以长度,宽度和高度。 我也为这样一个初学者问题道歉,我无法在其他来源找到答案。
答案 0 :(得分:0)
由于来自POST数组的值都是字符串,因此最好手动将它们转换为整数(或浮点数,如果需要),而不是依赖于PHP的自动类型转换。
#include <stdio.h>
#define ArraySize 10
int main(void){
unsigned v, arrayTable[ArraySize] = {0};
int n = 0;//number of elements
while(n < ArraySize){
printf("Enter Measurement #%i (or 0): ", n + 1);
if(1 != scanf("%u", &v) || v == 0){//use other variable
break;
}
arrayTable[n++] = v;
}
for (int i = 0; i < n; ++i) {
printf("%u\n", arrayTable[i]);
}
return 0;
}
答案 1 :(得分:-1)
$result= $length * $height * $width;
echo $result;