当我练习PHP时,我想用PHP for
循环
function Yearsbox(,) {
for ($i=2000; $i < 2020 ; $i++) {
echo $i;
}
}
echo Yearsbox;
有什么问题?
答案 0 :(得分:1)
首先,您必须定义函数,如果要从中获取数据,请返回一些数据。然后,你调用该函数。在你的情况下:
//call this function in activity class
functionname(this);
或强>
<?php
function Yearsbox() {
for ($i=2000; $i < 2020 ; $i++) {
echo $i;
}
}
Yearsbox();
或者您可以使用可选参数组合两者:
<?php
function Yearsbox() {
$output = "";
for ($i=2000; $i < 2020 ; $i++) {
$output .=$i;
}
return $output;
}
echo Yearsbox();
答案 1 :(得分:-1)
您不能将单个逗号作为函数的参数。请为参数指定有效名称或将括号留空。
其次,你用括号调用一个函数(忘记我之前写的东西,你必须添加它们,否则php将它解释为常量)
这应该是有用的:
function Yearsbox() {
for ($i=2000; $i < 2020 ; $i++) {
echo $i;
}
}
Yearsbox();