Any server can be stopped or started by PHP under Linux. Of course, if you are running a server which accepts sockets from the internet, then you can just connect directly to the server and tell it to shutdown. No need to go via PHP!
As for "starting a server from PHP", well, under Linux, anything can be started from pretty much anything. Just shell out to start the process and have it drop into deamon daemon mode.
I'm a Perl fan myself. Not surprisingly, there's a Perl Deamon Daemon library available.
http://search.cpan.org/~ehood/Proc-Daemon-0.03/Daemon.pm
If your hoster hosting provider offers Perl script support, then you probably have permission to use "system" or backticks command. Then you can very likely start a deamondaemon. However, you will need to use a non-privileged port (over 1024). Also, you should ASK THEM FIRST! They may not appreciate you tying up ports on their server. This is very definitely something you should discuss with your hosterhosting provider.
