PHP code example of sgvsv / php-mass-files-converter
1. Go to this page and download the library: Download sgvsv/php-mass-files-converter 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/ */
sgvsv / php-mass-files-converter example snippets
use \sgvsv\FilesConverter\Converter;
//Argument is a directory to convert
//c:\\my\\dir in windows or /path/to/dir in linux
$converter = new Converter("c:\\my\\dir");
//Files with /vendor/ or /.git/ substrings in their paths will be ignored
$converter->setIgnoredPaths(['/vendor/', '/.git/']);
//Files with other extensions will be ignored
$converter->setExtensions(['txt', 'php']);
//Output list of files and detected encodings
echo $converter->preview();
//Files that wasn't in UTF will be replaced with converted files
//File that already was in UTF will not be changed
$converter->convert();
`bash
composer