包含的 PHP 脚本的脚本路径?
有没有办法达到以下目的?
在我的 /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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)