Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to use chdir to change to current directory?

Tags:

php

chdir

I'm trying to include a file from another directory and then change the chdir back to the current/original form.

chdir('/some/path');
include(./file.php);
chdir();//How to I change the directory back to the original form?

Anyway to change the chdir back to where file.php is located? or do I have to do it manually?

like image 931
user962449 Avatar asked Oct 28 '11 05:10

user962449


Video Answer


1 Answers

First you need to store the current path, before changing dirs:

$oldPath = getcwd();
chdir('/some/path');
include(./file.php);
chdir($oldPath);

Why do you need to change dirs in order to include a file?

like image 97
Vlad Balmos Avatar answered Sep 25 '22 14:09

Vlad Balmos