有没有办法通过硬盘驱动器中的快捷方式运行php文件?不是通过在浏览器中编写任何协议。 我正在用PHP制作在线考试系统。我使用Wampserver。我想从快捷方式(如html)运行我的第一页,然后其他链接页面将按顺序运行。提前谢谢....
答案 0 :(得分:4)
首先从浏览器http://localhost/xxx/xxx.php
然后按Right click in Mouse choose -> New -> Shortcut
转到桌面。
现在粘贴已复制的链接,然后按next
并准备好finish
按钮快捷方式。
然后复制该快捷方式并将其粘贴到任何地方。
答案 1 :(得分:2)
如果您的wampserver已启用,则可以将此meta
HTML标记放在.html
文件中:
<meta HTTP-EQUIV="REFRESH" content="0; url=http://localhost/index.php">
这是一种重定向的HTML方式,content
是您希望重定向发生的秒数,url
是您要重定向到的位置。
答案 2 :(得分:1)
创建名为XXX.html
在您想要的任何驱动器上创建XXX.html
的文件
并将此代码放在html中:
<meta HTTP-EQUIV="REFRESH" content="0; url=http://localhost/yourproject/xxx.php">
现在,您可以更改HTML文件的图标。
答案 3 :(得分:0)
简单。
只需使用命令
创建批处理$ ls
file speach.txt wordgrep.awk
$ cat file
a man walks here
nobody over here
from man to man
$ cat speach.txt
An old man is equal to any other man
Petrol is not good for life
$ ./wordgrep.awk man file speach.txt
Filename:Line #:man #:source line
file:1:1:a man walks here
file:2:0:nobody over here
file:3:2:from man to man
speach.txt:1:2:An old man is equal to any other man
speach.txt:2:0:Petrol is not good for life
然后,只需双击批处理文件并运行它。
但是,您必须将php.exe添加到系统路径变量中。它可以更有活力。请参阅此链接观看视频教程。