Çalışma dizinine yukarıdaki php fonksiyonu vardır için nasıl bir mutlak yolunu belirleyebilirsiniz?

2 Cevap php

Ben bir komut dosyası çalıştırıyorum

/wp-content/themes/currenttheme/chat.php

Ben yukarıdaki php eklemek istediğiniz bulunan başka bir

/forum/chat/index.php

Index.php kendi dosyalarını içerir

Ben zaten denedim

$root = $_SERVER['DOCUMENT_ROOT'];
include($root."/forum/chat/index.php");

ama ben bu hatayı alıyorum

Uyarı: D Böyle bir dosya ya da dizin: failed to open stream: (D :/ My Dropbox / xampp / htdocs / lib / custom.php) [function.require] gerektiren My Dropbox \ xampp \ htdocs \ forum \ sohbet \ \ index.php hat 17 üzerinde

Ölümcül hata:) [function.require] (gerektirir: 'D :/ My Dropbox / xampp / htdocs / lib / custom.php' gerekli Başarısız açıklığı (include_pathdaki = ';. \ My Dropbox \ xampp \ php \ PEAR') olarak D: \ My Dropbox \ xampp \ htdocs \ hattında 17 forum \ sohbet \ index.php

(Index.php bazı dosyaları içerir, ama / forum / chat yolunda şekilde ommited edilir)

sonra ben denedim

$path   = getcwd();
$myfile = "/forum/chat/index.php";
include ($path.$myfile);

ve bu hata var:

Warning: include (D: \ My Dropbox \ xampp \ htdocs \ forum / forum / / index.php chat) [function.include]: D Böyle bir dosya ya da dizin yok: \ My Dropbox \ xampp \ htdocs failed to open stream hat 24 üzerinde \ wp-content \ themes \ currenttheme \ chat.php

Warning: include () [function.include]: açılış Başarısız 'D: \ My Dropbox \ xampp \ htdocs forum / forum \ / index.php / chat' (include_pathdaki = 'eklenmesi için; \ My Dropbox \ xampp \ php \. D ARMUT '): hat 24 üzerinde \ My Dropbox \ xampp \ htdocs \ wp-content \ themes \ currenttheme \ chat.php

2 Cevap

There is no problem with index.php. It is being included. The error message says about custom.php file

Sadece custom.php aynı $_SERVER['DOCUMENT_ROOT'] tekniği kullanmak

Eğer ihmal için hiçbir yolu yoktur gibi manuel / forum / sohbet eklemek zorunda

Ile yanlış bir şey:

include('../../../forum/chat/index.php');

?

Eğer yayınlanan ettik kodu başarısız olur nedeni her türlü vardır.

C.