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.
我正在尝试编写一个 php 来生成我之前编写的随机 XML 文件。由于此 php 代码生成 10-30 之间的随机数:
<?php print rand() . "<br>"; //line 4 calls out a number between 10 and 30 inclusive print rand(10,30); ?>
我如何能够生成随机 XML 文件?
我是这方面的新手,如果这是一个愚蠢的问题,请道歉!
任何帮助将不胜感激!
山姆
您可以将 xml 文件名存储在一个数组中,然后用来array_rand()随机选择一个
array_rand()