如何检查变量是否以特定字符串开头?

时间:2014-10-03 15:36:46

标签: php

我正在寻找How to check if variables starts with specific string& How to chech if a variable contains specific string但是,我不明白。

我可以使用哪一个检查变量 STARTS 是否具有特定字符串,就像MYSQL LIKE WHERE CLAUSE:

SELECT * FROM table WHERE column LIKE 'string%'

2 个答案:

答案 0 :(得分:1)

你可以使用它来匹配任何长度的字符串。而不是硬编码字符串及其长度。

$string = "string to test";
$testfor = "strin";
if(substr( $string, 0, strlen($testfor) ) === $teststr) {
      echo "Match";
}

答案 1 :(得分:0)

if(substr($string, 0, 5) === "String") {
# Do code
} else {
# Error
}

简单的字符串就足够了。