This question already has answers here:
startsWith() and endsWith() functions in PHP
(35个答案)
已关闭6年。
示例:我有一个
(35个答案)
已关闭6年。
示例:我有一个
$variable = "_foo"
,并且我想绝对确保$ variable不以下划线"_"
开头。如何在PHP中做到这一点?是否可以访问字符串后面的char数组? 最佳答案
您可以在php中 checkout substr
函数,并以这种方式获取第一个字符:
http://php.net/manual/en/function.substr.php
if (substr('_abcdef', 0, 1) === '_') { ... }
10-07 20:22