略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: ReflectionConstant::getValue

2025-03-12

ReflectionConstant::getValue

(PHP 8 >= 8.4.0)

ReflectionConstant::getValueGets value

说明

public ReflectionConstant::getValue(): mixed

Gets the value of the constant.

参数

此函数没有参数。

返回值

The value of the constant.

示例

示例 #1 ReflectionProperty::getValue() example

<?php
const FOO = 'foo';

var_dump((new \ReflectionConstant('FOO'))->getValue());
?>

以上示例会输出:

string(3) "foo"
添加备注

用户贡献的备注

此页面尚无用户贡献的备注。

官方地址:https://www.php.net/manual/en/reflectionconstant.getvalue.php

北京半月雨文化科技有限公司.版权所有 京ICP备12026184号-3