2010-moteur-site-simple/util.php

10 lines
178 B
PHP

<?php
// Fonctions utilitaires.
// Concatène deux chemins.
function concaténer_chemin_fs($p1, $p2) {
return $p1 . '/' . $p2; // FIXME : . '/' . n'est pas portable !
}
?>