4
我想實現PHP編寫這樣的:如何創建一個「if」語句來評估PHP中的前7個字符?
if ($image starts with "photos/") {
echo "the image path starts with photos/";
}
我想實現PHP編寫這樣的:如何創建一個「if」語句來評估PHP中的前7個字符?
if ($image starts with "photos/") {
echo "the image path starts with photos/";
}
if (substr($image, 0, 7) == 'photos/')
謝謝!工作完美! :) – Andi
感謝logan serman。這個答案是好的,但我認爲這個代碼也是有益的, 'substr(string str,int start,[int length]);' – aya
@Andi ...考慮看http://us2.php.net/ substr在你使用substr的時候可以看到更多的選項。 – Jason