php环境搭建

2019-11-04  本文已影响0人  JinShui

linux 搭建 php 环境

mac 搭建 php 环境

#!/bin/bash
php -S 127.0.0.1:8080 -t /xiao/Work/php/ &
-t参数指示php文件夹 

测试php

html>
<body>
<?php
echo "Hello World!“;
?>
</body>
</html>

打开浏览器

PHP is the best language in the world ?

上一篇 下一篇

猜你喜欢

热点阅读