本文目录一览:
- 1、如何在浏览器中打开php文件?
- 2、请问php文件怎么在浏览器中打开预览的呢?
- 3、如何用预览php网页文件?
- 4、php文件怎么用IE浏览器打开
- 5、如何能让php文件在sublime text中用浏览器打开后预览
如何在浏览器中打开php文件?
PHP不能在本地浏览器直接打开,需要由服务器操作,所以你可以把文件放在服务器上
如果你了上一步操作,但是PHP无法执行,就看一下你的服务器是否安装了PHP模块
请问php文件怎么在浏览器中打开预览的呢?
安装php_for_win 就行了 或者直接装个集成的PHP 比如phpstudy或者appserver都可以
如何用预览php网页文件?
进入百度软件中心下载“WampServer”
软件地址:
默认安装
安装完成以后将php文件存放于C:\wamp\www
浏览器中输入网址localhost/你的php文件名.php
即可预览PHP网页文件
php文件怎么用IE浏览器打开
执行PHP文件需要,在Apache服务器,开启的情况下才能查看
1,把你的PHP项目文件发到Apache服务器下的www目录下面
2,在确保Apache开启的情况下,打开IE浏览器
3,在浏览器的地址栏中输入localhost,会看到生成文件的列表
4,然后在文件列表中找到你的PHP项目文件,单击执行
5,如果配置环境正确,就可以看到PHP文件执行的结果
如何能让php文件在sublime text中用浏览器打开后预览
配置在Chrome,Firefox中打开
安装 SideBarEnhancements(packages control- 输入install packages- SideBarEnhancements能找到这个插件)
然后通过ctrl + k, ctrl + b打开侧边栏,在侧边栏的html文件上右击,找到 open width - edit applications
然后在这里边设置firefox打开的方式。
application : 路径要修改为自己默认安装的路径。
[
{"id": "side-bar-files-open-with",
"children":
[
//application firefox
{
"caption": "firefox",
"id": "side-bar-files-open-with-firefox",
"command": "side_bar_files_open_with",
"args": {
"paths": [],
"application": "D:\\Program Files\\Mozilla Firefox\\firefox.exe",
"extensions":".*" //any file with extension
}
},
{"caption":"-"},
{
"caption": "chrome",
"id": "side-bar-files-open-with-chrome",
"command": "side_bar_files_open_with",
"args": {
"paths": [],
"application": "C:\\Program Files\\Google\\Chrome\\Application\\chrome.exe",
"extensions":".*" //any file with extension
}
}
]
}
]
设置快捷键
Key bindings - User
[
{ "keys": ["ctrl+shift+c"], "command": "copy_path" },
{ "keys": ["alt+f12"], "command": "open_in_browser" },
{ "keys": ["f12"], "command": "side_bar_files_open_with",
"args": {
"paths": [],
"application": "D:\\Program Files\\Mozilla Firefox\\firefox.exe",
"extensions":".*" //any file with extension
} },
{ "keys": ["ctrl+f12"], "command": "side_bar_files_open_with",
"args": {
"paths": [],
"application": "C:\\Program Files\\Google\\Chrome\\Application\\chrome.exe",
"extensions":".*" //any file with extension
}
}
]