Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Sublime Text 3 - PHP Build System

Struggling with this quite a bit.

Trying to add a PHP build system this is what I have:

{
    "cmd" : ["php", "$file"],
    "file_regex": "php$",
    "selector"  : "source.php"
}

Now, building a file called test.php which contains: <?php echo "Hello, World!"; ?> yields this error:

[WinError 2] The system cannot find the file specified
[cmd: ['php', 'D:\\www\\sandbox\\php\\test.php']]
[dir: D:\www\sandbox\php]

PHP is definitely on my PATH and running php test.php via command line works.

Can anyone shed some light here?

like image 966
rgin Avatar asked Dec 06 '22 00:12

rgin


1 Answers

PHP.sublime-build:

{
    "cmd": ["C:\\php\\php.exe", "$file"],
    "file_regex": "php$",
    "selector": "source.php"
}

Varialble in this only path to php.exe ("C:\php\php.exe"). After save it press F7 on your php code. Hope this help somebody.

like image 144
X-factor Avatar answered Dec 24 '22 13:12

X-factor