Answers:
有些单词不能用于类名。
基本上,PHP保留字喜欢new
,public
,static
,...
为了克服这个问题,并且仍然允许在URL中使用这些单词,Magento在Action
自动加载类时会添加后缀。
这意味着,new
映射到NewAction.php
,public
要PublicAction.php
。
您可以在类\Magento\Framework\App\Router\ActionList
(2.3分支)中找到具有此行为的单词列表。
protected $reservedWords = [
'abstract', 'and', 'array', 'as', 'break', 'callable', 'case', 'catch', 'class', 'clone', 'const',
'continue', 'declare', 'default', 'die', 'do', 'echo', 'else', 'elseif', 'empty', 'enddeclare',
'endfor', 'endforeach', 'endif', 'endswitch', 'endwhile', 'eval', 'exit', 'extends', 'final',
'for', 'foreach', 'function', 'global', 'goto', 'if', 'implements', 'include', 'instanceof',
'insteadof','interface', 'isset', 'list', 'namespace', 'new', 'or', 'print', 'private', 'protected',
'public', 'require', 'return', 'static', 'switch', 'throw', 'trait', 'try', 'unset', 'use', 'var',
'while', 'xor',
];
这里是代码改变new
来NewAction
。