日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

getcwd函数_PHP getcwd()函数与示例

發布時間:2023/12/1 49 豆豆
生活随笔 收集整理的這篇文章主要介紹了 getcwd函数_PHP getcwd()函数与示例 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

getcwd函數

PHP getcwd()函數 (PHP getcwd() function)

The full form of getcwd is "Get Current Working Directory", the function getcwd() is used to get the name of the current working directory, it does not accept any parameter and returns the current working directory.

getcwd的完整格式為“獲取當前工作目錄” ,該函數getcwd()用于獲取當前工作目錄的名稱,它不接受任何參數并返回當前工作目錄。

Syntax:

句法:

getcwd();

Parameter(s):

參數:

  • It does not accept any parameter.

    它不接受任何參數。

Return value:

返回值:

If function execution is the success, it returns the current working directory and it returns "FALSE" if function execution is failed.

如果函數執行成功,則返回當前工作目錄,如果函數執行失敗,則返回“ FALSE”。

Example: PHP code to get the name of the current working directory

示例:PHP代碼獲取當前工作目錄的名稱

<?php $result = getcwd(); echo "current working directory is: ".$result."<br/>"; ?>

Output

輸出量

current working directory is: /home

翻譯自: https://www.includehelp.com/php/getcwd-function-with-example.aspx

getcwd函數

總結

以上是生活随笔為你收集整理的getcwd函数_PHP getcwd()函数与示例的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。