*/ class TestCommand extends ContainerAwareCommand { /** * {@inheritdoc} */ protected function configure() { $this->setName('test'); } /** * {@inheritdoc} */ protected function execute(InputInterface $input, OutputInterface $output) { $foo = 'rtmp://local.stream-server/live?key=myPassword'; $parse = parse_url($foo); var_dump($parse); } }