<?php

$str = "//pagina//id/1//";
$item = strtok($str,'/');
$arr[] = $item;
    
while($item = strtok('/')){
	$arr[] = $item;
}
print_r($arr);