typecho-MyUpload
typecho-MyUpload copied to clipboard
Fatal error: Arrays are not allowed in class constants
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
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);