Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在不使用循环的情况下,是否有一种方法(函数)可以将例如字母“c”转换为其字母表中的数字序列(3)?
我正在尝试获取一个文字字符串 -$var = "c"并将一个函数应用于它返回3.
$var = "c"
3
是否有任何内置的 PHP 函数可以做到这一点?我在网上找不到任何东西,如有必要,宁愿避免编写该函数。
有人知道这样的转换功能吗?
是的。
$alphabet_position = ord(strtoupper($character)) - ord('A');