PHP:当类是命名空间时,参数类型提示问题

时间:2013-07-12 22:10:32

标签: php types type-hinting

这失败了(编写代码):

namespace Season\Summer;

class Summer
{
    public static function days(string $month)
    {
        // ...
    }
}

使用:

"Argument 1 passed to Season\\Summer\\Summer::days() must be an instance of string, string given, called in /path/to/Seasons/Summer/Summer.php on line 5."

似乎命名空间导致PHP的内置类型提示问题,因为我认为它检查参数$month是标量类型stringSeason\Summer\而不是{{1}的全局定义(我可能错了)。

我该如何解决这个问题?解决办法是什么?我们在函数内部string

2 个答案:

答案 0 :(得分:4)

PHP并不支持string作为类型提示。如果您需要$ month作为字符串,请从method参数中删除字符串,强制转换它或使用is_string()检查它是否为字符串:

namespace Season\Summer;

class Summer
{
    public static function days($month)
    {
        $month = (string) $month;
        // or
        if (! is_string($month)) {
            throw new Exception("Argument $month is not a string.");
        }
    }
}

Documentation can be found here

答案 1 :(得分:-2)

我已经注册了一个自己的错误处理程序:

namespace framework;        
    class Error {

        static $arHintsShorts = array('integer'=>'int', 'double'=>'float');

    public static function execHandler( $iErrno, $sErrstr, $sErrfile, $iErrline ) {


    if ( preg_match('/Argument (\d)+ passed to (.+) must be an instance of (?<hint>.+), (?<given>.+) given/i',
                                $sErrstr, $arMatches ) )
                {
                    $sGiven = $arMatches[ 'given' ] ;
                    $arHints =  explode( '\\', $arMatches[ 'hint' ] );
                    $sHint  = strtolower( end($arHints) );

                    if (isset(self::$arHintsShorts[$sGiven])) {
                        $sGiven = self::$arHintsShorts[$sGiven];
                    }

                    if ( $sHint == strtolower($sGiven) || $sHint == 'mixed' || ($sHint == 'float' && $sGiven == 'int')) {
                        return TRUE;
                    } else {
                        if (self::$oLog != null) {
                            self::$oLog->error($sErrstr . '(' . $iErrno . ', ' . $sErrfile . ', ' . $iErrline . ')');
                        }
                        throw new \UnexpectedValueException($sErrstr, $iErrno);
                    }
                }

        }
    }

set_error_handler(array('framework\error', 'execHandler'), error_reporting());

它处理所有原始类型,尽管在命名空间类中。