包含的 PHP 脚本的脚本路径?

发布于 2024-08-09 12:49:00 字数 464 浏览 2 评论 0原文

有没有办法达到以下目的?

在我的 /www/var/public_html/index.php 文件中我有这个

<?php include('database/connect.php'); ?>

然后在 /www/var/public_html/database/connect.php 中,我想做这样的事情

<?php

$my_path = get_path_of_current_script(); // should not be path of index.php
echo $my_path;
// should print
// /www/var/public_html/database
?>

我不想 $my_path 打印 /www /var/public_html/

有 PHP 函数可以做到这一点吗?

Is there a way to achieve the following?

In my /www/var/public_html/index.php file i have this

<?php include('database/connect.php'); ?>

And then in /www/var/public_html/database/connect.php, I want to do something like this

<?php

$my_path = get_path_of_current_script(); // should not be path of index.php
echo $my_path;
// should print
// /www/var/public_html/database
?>

I don't want $my_path to print /www/var/public_html/

Is there a PHP function to do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我不是你的备胎 2024-08-16 12:49:00
$my_path = dirname(__FILE__);
$my_path = dirname(__FILE__);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文