Are there alternative ports that can be used if Port 80 is occupied for PHP development?

If Port 80 is occupied for PHP development, an alternative port can be used to run the PHP server. One common alternative port is Port 8080. To specify a different port when running the PHP server using the built-in web server, you can use the `-S` flag followed by the desired port number.

php -S localhost:8080