Alias for the PHP built-in server
I keep forgetting the correct command line syntax for the PHP build-in server, so I’ve now made an alias for it in my .profile:
alias phps='php -S 0.0.0.0:8888'
Now I can simply type: phps public/index.php to start the built-in web server.