运行PHP的内置服务器和Symfony的PHP服务器之间的区别

When running PHP with Windows CMD, is there any difference between :

c:\projects\php-project-root> php app/console server:run

And :

c:\projects\php-project-root> php -S localhost:8000

The builtin server is a wrapper around PHP server with some extra options for convenience. For example you can specify a docroot or router option.