簡體   English   中英

如何在 php 文件中獲取獲取 function 的路徑?

[英]How can I get the path of the fetch function in the php file?

我有一個 JavaScript function 從后端獲取數據

async getAllExpensesByUser() {
    let response = await fetch("router.php/getAll");
    return response.json();
}

在 router.php 如何獲取路徑“/getAll”以便相應地檢索數據?

你可以用它來獲取uri

basename($_SERVER['REQUEST_URI']);

欲了解更多信息,請訪問此鏈接php 文檔

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM