- array_diff_assoc: documentation ( source)
- implode: documentation ( source)
- explode: documentation ( source)
<?php
$a = '/www/proj-asd/app/home/news';
$b = '/www/proj-asd/app/_view';
echo getRelPath($a, $b); // home/news
function getRelPath($a, $b) {
$a = explode('/', $a);
$b = explode('/', $b);
$diff = array_diff_assoc($a, $b);
return implode('/', $diff);
}