如何能让php文件在sublime text中用浏览器打开后预览
11个回答
2016-07-11 · 百度知道合伙人官方认证企业
育知同创教育
1【专注:Python+人工智能|Java大数据|HTML5培训】 2【免费提供名师直播课堂、公开课及视频教程】 3【地址:北京市昌平区三旗百汇物美大卖场2层,微信公众号:yuzhitc】
向TA提问
关注
展开全部
配置在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
}
}
]
安装 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
}
}
]
展开全部
php文件不可以像html文件直接打开,要用到本地服务器,通过流量器访问localhost、去访问php文件
服务器在本地安装WampServer软件,在www的文件夹里放php文件,在流量器访问localhost/文件.php就可以了
服务器在本地安装WampServer软件,在www的文件夹里放php文件,在流量器访问localhost/文件.php就可以了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
SUBLIME不能直接预览喔,但是可以给些小建议:
把SUBLIME,浏览器锁定到任务栏
当你需要预览把文件拖到浏览器上就行
当你需要编辑的时候拖到SUBLIME上
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
在本地装一个集成环境 phpstudy 或者 wampserver
装好运行环境之后,把你的php文件放到装好的环境下的WWW文件夹下面
例如你的php文件名是index.php 那么运行你的集成环境
打开浏览器,在地址栏写上localhost,看到index.php文件,点开即可
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
php 不是静态的语言。不能直接预览。
你必须要有一个后台服务器。
sublime text 里面有其他类似的plugin帮助你刷新,打开页面,但是前提是你要有一个能解析php的服务器。
你必须要有一个后台服务器。
sublime text 里面有其他类似的plugin帮助你刷新,打开页面,但是前提是你要有一个能解析php的服务器。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询