Skip to content

Latest commit

 

History

History
65 lines (37 loc) · 1.02 KB

README.md

File metadata and controls

65 lines (37 loc) · 1.02 KB

mac idea中开发php

安装 brew

/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

安装php

brew install php 

安装后php 安装在目录

  • 安装目录
 /usr/local/Cellar/php/7.3.3
 
  • 查看php 版本
 /usr/local/Cellar/php/7.3.3/bin/php -v

a.php

<!DOCTYPE html>
<html>
<body>

<?php
echo "Hello World!";
?>

</body>
</html>

配置

运行 a.php文件