16)PHP, set_include_path

來源:互聯網
上載者:User

標籤:apache   系統常量   get   配置   tor   code   logs   XML   代碼   

代碼展示:

 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 2 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="zh-cn"> 3 <head> 4     <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> 5     <title>網頁標題</title> 6     <meta name="keywords" content="關鍵字列表" /> 7     <meta name="description" content="網頁描述" /> 8     <link rel="stylesheet" type="text/css" href="" /> 9     <style type="text/css"></style>10     <script type="text/javascript"></script>11 </head>12 <body>13 <?php14     //設定設定檔中的include_path的值——代碼中的設定只對當前代碼有效。15     //而且這裡的設定,無需重啟apache16     set_include_path(‘D:\00-Code\PhpStorm\Demo\demo01‘);17     18     //更常見的做法:19     $path = get_include_path();    //先擷取系統的include_path值20     $path_new = $path . PATH_SEPARATOR ."C:/";21     //PATH_SEPARATOR: 是系統常量,代表目錄分割符:22     //        unix系列中,是“:”23     //        window系列中,是“;”24     set_include_path($path_new);    //再來設定“自己”想要加入的paht路徑25     //這樣就不會破壞(丟失)原有路徑設定26     27     echo "<p>當前工作目錄:" . getcwd() .‘</p>‘;    //getcwd()獲得當前工作目錄28     29     //相對路徑:30 //    include ‘c.php‘;31     32 ?>33 </body>34 </html>

結果展示:

當前工作目錄:D:\00-Code\PhpStorm\Demo\demo01

16)PHP, set_include_path

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.