Created
January 25, 2013 16:40
-
-
Save cirops/4635876 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
To run php on sublime: | |
* Select Tools->Build System->New Build System | |
* Copy the following code to the created file: | |
{ | |
"cmd" : ["php", "$file"], | |
"file_regex" : "php$", | |
"selector" : "source.php" | |
} | |
* Save the file as PHP.sublime-build | |
* Go to Tools->Build System and select PHP | |
* Press ctrl+b to "build" (thus interpreting) the code |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment