#TIL : realpath function


06 Aug 2017 / by KhanhIceTea

If you pass a non-exists path to function realpath, it returns empty string. So please don't do something like :

function storage_path($folder) {
	return realpath(__DIR__.'/storage/'.$folder);
}

if you expect it return full path of new folder !


Sound good ?