我有一些PHP变量,其名称直接链接到它们包含的函数。
是否有自动创建这些变量,以便我可以使用所有变量00-200?
这就是我现在正在做的事情......
$regdays00 = is_user_reg_matured( 00 );
$regdays02 = is_user_reg_matured( 02 );
$regdays05 = is_user_reg_matured( 05 );
$regdays08 = is_user_reg_matured( 08 );
我很高兴能够去:
small function that creates all $redays000 - $regdays200
if ( $regdays162) { "This has now used is_user_reg_matured(162)" }
谢谢!
答案 0 :(得分:1)
这是一个基本的循环和数组。
或许这样的事情:
$regdays = [];
for($i = 0; $i < 200; $i++) {
$regdays[$i] = is_user_reg_matured($i);
}
你去吧。数组0 - 199.
if ($regdays[162]) {
echo "This has now used is_user_reg_matured(162)";
}
我强烈建议您对数组和循环进行一些阅读。这些是您在工具带中非常需要的一些基本PHP工具!