Execute in endless loop shell command on Linux

Sometimes we need to execute in endless loop a command on Linux servers.
 
For example in our case we needed to execute php script jobs.php in endless loop until I press Ctrl+C
Here is how we did it with one command (BTW: in the same way it works also on Mac computers or Cygwin shell on Windows):
while true; do php jobs.php; done