• 实例首页
  • 自学教程
  • IT工具箱
xxxxxxxxxx
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<meta charset="utf-8">
5
<title>PHP 魔术常量 CLASS  实例 - 自学教程(runoops.com)</title>
6
</head>
7
<body>
8
​
9
<?php
10
class test {
11
    function _print() {
12
        echo '类名为:'  . __CLASS__ . "<br>";
13
        echo  '函数名为:' . __FUNCTION__ ;
14
    }
15
}
16
$t = new test();
17
$t->_print();
18
?>
19
​
20
</body>
21
​
22
</html>

© 2023 自学教程   runoops.com All Rights Reserved. 备案号:闽ICP备19010956号-1