I know if I want to run multiple Python scripts simultaneously I can knock up a bash file that looks like this;
#!/bin/bash
python pr1.py &
python pr2.py &
python now.py &
python loader.py &
But what if I want to do the same thing directly from PHP? It seems clunky to call a bash script from PHP which then runs the Python scripts.