PHP code example of matthiasmullie / path-converter
1. Go to this page and download the library: Download matthiasmullie/path-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/ */
matthiasmullie / path-converter example snippets
use MatthiasMullie\PathConverter\Converter;
$from = '/css/imports/icons.css';
$to = '/css/minified.css';
$converter = new Converter($from, $to);
$result = $converter->convert('../../images/icon.jpg');
// $result is now '../images/icon.jpg'