I found a one possible solution. This strstr()
function checks for the specific word journal/
to the string then remove all the characters before it.
<?php
$journals = glob("{$_SERVER['DOCUMENT_ROOT']}/journal/*");
foreach($journals as $journal){
$strippedURL = strstr($journal, 'journal/');
echo "<a href=\"http://www.example.net/{$strippedURL}\">file</a>\n";
}
?>