PHP code example of partnermarketing / file-system-bundle
1. Go to this page and download the library: Download partnermarketing/file-system-bundle library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
partnermarketing / file-system-bundle example snippets
namespace Your\Namespace\Path;
use Partnermarketing\FileSystemBundle\Factory\FileSystemFactory;
class ServiceName
{
private $fileSystem;
public function __construct(FileSystemFactory $fileSystemFactory)
{
// This will build a fileSystem based on configs specified.
$this->filesystem = $fileSystemFactory->build();
}
}
$this->filesystem->read($varWithFilePath);
// Writes the content of the $source into the $path returns the URL.
$url = $this->filesystem->write($path, $source);
// Writes the $content into the $path returns the URL:
$url = $this->filesystem->writeContent($path, $content);
// Deletes the file $path:
$isDeleted = $this->filesystem->delete($path);