How to get the `public` dir from symfony controller?

by elisha_langworth , in category: PHP Frameworks , a year ago

How to get the `public` dir from symfony controller?

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

Member

by orpha , a year ago

@elisha_langworth 

You can get the public directory path from a Symfony controller using the following steps:

  1. Inject the KernelInterface dependency in your controller constructor or as a method argument.
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
use SymfonyComponentHttpKernelKernelInterface;

...

private $kernel;

public function __construct(KernelInterface $kernel)
{
    $this->kernel = $kernel;
}


  1. Use the getRootDir() method of the KernelInterface to get the Symfony application root directory.
1
$rootDir = $this->kernel->getRootDir();


  1. Concatenate the public directory path with the root directory path to get the absolute path to the public directory.
1
$publicDir = $rootDir . '/../public';


Now you can use the $publicDir variable to access files in the public directory from your controller. For example, you can create file paths or URLs to assets like CSS, JavaScript, or image files.

Related Threads:

How to get project or root dir in symfony 5?
How to get post data in Symfony controller?
How to download pdf file from public folder in symfony?
How to generate an url for a controller in symfony?
How to create a new controller in Symfony?
How to send data json via ajax to my controller in symfony?