本文目錄一覽:
- 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
}
}
]
原創文章,作者:EXHDM,如若轉載,請註明出處:https://www.506064.com/zh-tw/n/313550.html