typecho-MyUpload icon indicating copy to clipboard operation
typecho-MyUpload copied to clipboard

Fatal error: Arrays are not allowed in class constants

Open straicat opened this issue 5 years ago • 1 comments

tnjc 2020-01-02 11:59:07 Fatal error: Arrays are not allowed in class constants in C:\Users\cs\Desktop\USB WEB\root\usr\plugins\MyUpload\Plugin.php on line 17 报错

https://jlice.top/p/814c7/comment-page-1#comment-9

straicat avatar Jan 02 '20 17:01 straicat

https://stackoverflow.com/questions/38900385/php5-6-are-arrays-allowed-in-class-constants

As of PHP 5.6 arrays are allowed in class constants.

See the link for a working php code.

<?php

class Foo 
{
    const BAR = [1,2,3];
}

print_r(Foo::BAR);

straicat avatar Jan 02 '20 17:01 straicat