是否有任何现成的购买力平价功能,通过这种功能,我可以计算字母缩略语中字母的指数。
<?php
$a = "testword";
echo "Count of Characters is: " . strlen($a);
?>
我现在想得到这个词的累积“总数”。
e.g.
A
is the first letter of the alphabet so it maps to1
B
is the second letter of the alphabet so it maps to2
C
is the third letter of the alphabet so it maps to3
D
is the fourth letter of the alphabet so it maps to4
因此,ABCD的字句 1+2+3+4=10
同样,我需要的是“前言”或任何字。