- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试图让 PHP_CodeSniffer 检查类名中的驼峰命名法,但是在我看来,驼峰命名法检查是不可能的(没有字典,包括技术词)。
我已经浏览了互联网,但到目前为止,我看到的唯一选择是字符串是否有一些共同的分隔符可以爆炸 - 即下划线、单词之间的空格等。
甚至这也没有用,因为只有在名称准确/始终在每个单词之间包含分隔符时,检查才能准确。
“检查”的重点是确定名称的格式是否不正确,这可能包括未正确分隔。
此外,关于 PHP_CodeSniffer 的资源要么很少见,要么只有作者/开发人员才能理解它的基本和技术。
当前标准嗅探检查
我在一些当前的 Sniffs(即 Squiz 和 PEAR 标准)中找到了这个代码:
if (PHP_CodeSniffer::isCamelCaps($functionName, false, true, false) === false)
// Check the first character first.
// Check that the name only contains legal characters.
// Check that there are not two capital letters next to each other.
// The character is a number, so it cant be a capital.
class calculateAdminLoginCount
// Not camelCase
class calculateadminlogincount
// Partially camelCase
class calculateadminLogincount
isCamelCaps()
函数(或与此相关的任何 PHP 脚本)捕获上述两个示例?
class calculateadminLogincount
任何 PHP 脚本如何识别
calculate
admin
Login
count
该字符串中的不同单词是否能够检查:第一个字母第一个单词是小写的,然后所有后续单词的第一个字母都是大写的?
isCamelCaps()
功能
public static function isCamelCaps(
$string,
$classFormat=false,
$public=true,
$strict=true
) {
// Check the first character first.
if ($classFormat === false) {
$legalFirstChar = '';
if ($public === false) {
$legalFirstChar = '[_]';
}
if ($strict === false) {
// Can either start with a lowercase letter,
// or multiple uppercase
// in a row, representing an acronym.
$legalFirstChar .= '([A-Z]{2,}|[a-z])';
} else {
$legalFirstChar .= '[a-z]';
}
} else {
$legalFirstChar = '[A-Z]';
}
if (preg_match("/^$legalFirstChar/", $string) === 0) {
return false;
}
// Check that the name only contains legal characters.
$legalChars = 'a-zA-Z0-9';
if (preg_match("|[^$legalChars]|", substr($string, 1)) > 0) {
return false;
}
if ($strict === true) {
// Check that there are not two capital letters
// next to each other.
$length = strlen($string);
$lastCharWasCaps = $classFormat;
for ($i = 1; $i < $length; $i++) {
$ascii = ord($string{$i});
if ($ascii >= 48 && $ascii <= 57) {
// The character is a number, so it cant be a capital.
$isCaps = false;
} else {
if (strtoupper($string{$i}) === $string{$i}) {
$isCaps = true;
} else {
$isCaps = false;
}
}
if ($isCaps === true && $lastCharWasCaps === true) {
return false;
}
$lastCharWasCaps = $isCaps;
}
}//end if
return true;
}//end isCamelCaps()
最佳答案
您可以通过拆分大小写转换的单词来分析函数名称的正确大小写。对于原始函数名称的每个部分,在字典或字典+行话文件('calc'、'url'、'admin' 等(可能先检查行话)中查找该子词)。如果任何子词失败,那么正确的大写就没有到位。
您可以使用 Solr 或 ElasticSearch 使用 Lucene 中的 WordDelimiterFilter 为您分解单词。当案例发生变化时,这将创建子词:"PowerShot" -> "Power" "Shot"
"LoginURL" => "Login" "URL"
您可以将单词直接插入这些 NoSQL 数据库并稍后进行分析,或者您可以(至少在 ES 中)简单地使用单词分隔符标记过滤器来分解您的查询,而无需实际保存结果。
http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/analysis-word-delimiter-tokenfilter.html
https://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters#solr.WordDelimiterFilterFactory
例子:
calcAdminLogin => calc 管理员登录
calcadminlogin => calcadminlogin
如果您有一个包含诸如“calc”和“admin”之类的词的补充词典,那么第一个函数名称将分解为将出现在词典中的 3 个词,因此驼峰式大小写是正确的。
在第二个示例中,'calcadminlogin' 将无法在字典中找到,因此驼峰式大小写不正确。
关于php - 识别字符串是否为驼峰式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28949075/
如 this question适用于“大型”Visual Studio 和 Resharper,我也希望在 VS Code 中看到该功能。 滚动浏览 shortcut list对于 VS Code,我
我是一名优秀的程序员,十分优秀!