PHP: Universal function to randomly call multiple different script sections?
Here's the question: I have several scripts that have different functions. Do this, do that…
Now I would like to add a function at the beginning of the script that randomly decides (random numbers?) which function section is parsed (skipped) or which included file is called or executed by the script when the script is called, for example, via a cron job or manual button.
The random function should be executed very frequently and be truly random, with no errors allowed. It should apply to every executable code structure/file.
Is this possible with PHP or would another language (e.g. Python) be more suitable?
This is not very difficult now and many ways lead to Rome. Let’s assume that you have 10 scripts and that are named according to the principle script1.php, script2.php, … and the respective function in it is action1(), action2(), …, you can do it for example:
From the principle, you can even save the switch case, but so it is clearer and you can call up some features depending on the script.
Sure you could do that
For each page call, the PHP is executed