<?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); }
You have javascript disabled. You will not be able to edit any code.