gpt4 book ai didi

javascript - php显示当前页面

转载 作者:行者123 更新时间:2023-11-29 10:50:59 27 4
gpt4 key购买 nike

我正在尝试显示用户所在的当前页面,并且每次用户进入不同页面时都会更新。这是到目前为止我的代码;

$files = [
'<a href="session.php">'. 'Home' .'</a>' ,
'<a href="sql1.php">'. 'SQL1' .'</a>' ,
'<a href="sql2.php">'. 'SQL2' .'</a>',
'<a href="sql3.php">'. 'SQL3' .'</a>',
'<a href="sql4.php">'. 'SQL4' .'</a>',
'<a href="sql5_1.php">'. 'SQL5_1' .'</a>',
'<a href="sql5_2.php">'. 'SQL5_2' .'</a>',
'<a href="sql6.php">'. 'SQL6' .'</a>',
'<a href="sql7.php">'. 'SQL7' .'</a>',
'<a href="sql8.php">'. 'SQL8' .'</a>',
'<a href="sql9.php">'. 'SQL9' .'</a>',
'<a href="sql10.php">'. 'SQL10' .'</a>',
];

file_get_contents('sql1.php');
file_get_contents('sql2.php');
file_get_contents('sql3.php');
file_get_contents('sql4.php');
file_get_contents('sql5_1.php');
file_get_contents('sql5_2.php');
file_get_contents('sql6.php');
file_get_contents('sql7.php');
file_get_contents('sql8.php');
file_get_contents('sql9.php');
file_get_contents('sql10.php');


echo "Next Page ".$files[array_rand($files)];

最佳答案

php 有一个 Magic constant为此,__FILE__。这将返回当前文件的路径及其文件名。

// Path and file
echo "Current page: " . __FILE__;

// Get only the filename
$split = preg_split('/\//', __FILE__);
echo $split[count($split) - 1];

关于javascript - php显示当前页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43738126/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com