本文介绍了如何随机签名?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何随机签名?

echo Rand(|,★,●,-);

当我测试这段代码时,它会显示错误

When i test this code it's will show error

Parse error: syntax error, unexpected '|', expecting ')' 

推荐答案

您可以将符号存储在数组中并使用 array_rand() 选择一个随机项目:

You could store the signs in an array and use array_rand() to select a random item:

$signs = array('|', '★', '●', '-');
$random = $signs[array_rand($signs)];

echo $random;

这篇关于如何随机签名?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-31 17:56