אם אתה מביא את הpath המלא, אין צורך בנקודה בהתחלה.
תרא דוגמא:
(ב CLI)
קוד:
SDF@sigma:~> pwd
/usr/home/SDF
SDF@sigma:~> php
<?php
mkdir("test_mkdir");
?>
SDF@sigma:~> ls -al tes
test* test.c test.core test.cpp test_mkdir/
SDF@sigma:~> rm -rf test_mkdir/
SDF@sigma:~> php
<?php
mkdir("/usr/home/SDF/test_mkdir");
?>
SDF@sigma:~> ls test
test* test.c test.core test.cpp test_mkdir/
SDF@sigma:~> rm -rf test_mkdir/