为什么 shuffle 函数在 PHP 类中不起作用?
为什么它不打乱数组,这样我每次都会得到一个随机结果?
class greeting {
public $greet = array('hi','hello');
shuffle($greet);
}
$hi = new greeting;
echo $hi->greet[1];
他们的代码有问题吗?
Why won't it shuffle the array so I get a random result each time?
class greeting {
public $greet = array('hi','hello');
shuffle($greet);
}
$hi = new greeting;
echo $hi->greet[1];
Is their something wrong with my code?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果你改变它,让洗牌在构造函数内部,它应该可以正常工作。
If you change it so the shuffle is inside the constructor it should work fine.
任何计算都不能在方法之外、类内部执行。
any calculation can not be executed outside the method, inside class.
在类块内,您只能定义常量、属性(均具有固定值)和方法。您不能将代码放入该块中,代码只能放入方法(又称函数)内。
Inside a class block you can only define constants, properties (both with fixed values) and methods. You can't put code in that block, code can only be placed inside methods (AKA functions).