PHP基础之三~常量

1、define方式

<?php
    define("PI", 3.1415926);
    echo PI;
?>

2、const方式

<?php
    const PI = 3.1415926;
    echo PI;
?>


你可能感兴趣的:(常量)