美文网首页
php基础学习常量篇

php基础学习常量篇

作者: 一个普通人的普通话 | 来源:发表于2018-10-19 14:27 被阅读0次

    1.定义变量需要使用 define 关键字 其作用域是全局的

    define("easy","every thing is easy is you want to do",true);
    echo easy;
    ECHO '<BR>';
    echo EASY;
    function test(){
        echo easy;
        ECHO '<BR>';
    }
    test();
    

    结果

    every thing is easy is you want to do
    every thing is easy is you want to do
    every thing is easy is you want to do

    相关文章

      网友评论

          本文标题:php基础学习常量篇

          本文链接:https://www.haomeiwen.com/subject/uzpyzftx.html