From the GNU getcwd(3) manpage, paraphrased: returns the absolute pathname of the current working directory. Fails when the current directory is not eradable. Complies with POSIX.1 spec.
(PHP 4, PHP 5, PHP 7, PHP 8)
posix_getcwd — Çalışılan dizinin tam yolunu döndürür
Betiğin çalışma dizininin mutlak yolunu döndürür. Hata durumunda atanan hata numarasına posix_get_last_error() işlevi ile erişilebilir.
Bu işlevin bağımsız değişkeni yoktur.
İşlem sırasında bir hata oluşursa posix_get_last_error()
işlevi ile öğrenilmek üzere bir hata numarası atanır ve false
döner,
yoksa mutlak dizin yolunu içeren bir dizge döner.
Örnek 1 - posix_getcwd() örneği
Bu örnek, betiğin çalıştığı dizinin tam yolunu göstermektedir.
<?php
echo 'Çalışma dizinim: '.posix_getcwd();
?>
Bilginize:
bu işlev başarısız olur.
- Okuma ve arama izni yoksa
- veya mutlak yol artık mevcut değilse
From the GNU getcwd(3) manpage, paraphrased: returns the absolute pathname of the current working directory. Fails when the current directory is not eradable. Complies with POSIX.1 spec.