Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
$randomuser = array("user","user1","user2","user3","user4","user5"); shuffle($randomuser); /** MySQL database username */ define('DB_USER', $randomuser);
如何使上述代码在 wp-config.php 中工作?谢谢。
您也可以在第二个参数中设置要获得多少随机用户:
$random_users = array_rand($random_user,5); //gets 5 random users from array