PHP Dev程序员大数据 爬虫Python AI Sql

php初级讲义3-入门脚本

2017-02-09  本文已影响96人  Stone_Zhuo

php脚本的特点

实例

<?php 
    /**
     * 第一个php脚本
     * @author stone
     */

    # 输出'hello, world!'
    echo 'hello, world!'; // 输出'hello, world!'
?>
test-3-1.png

说明

<!DOCTYPE html>
<html lang="zh-CN">
    <head>
        <meta charset="utf-8" />
        <title>test</title>
    </head>
    <body>
        <h1><?php echo 'this is a title'; ?></h1>
    </body>
</html>
<!DOCTYPE html>
<html lang="zh-CN">
    <head>
        <meta charset="utf-8" />
        <title>test</title>
    </head>
    <body>
        <h1><?= 'this is a title' ?></h1>
    </body>
</html>
<?php 
    echo 'hello, world!';

本文首发于公众号:programmer_cc,转载请注明出处。


微信公众号.jpg
上一篇 下一篇

猜你喜欢

热点阅读