2013-04-12 49 views

回答

1
$str = "Hello world"; 
if(strlen($str)) 
    echo substr($str,1,1); //e 

描述:用於從字符串切割字符串的一部分的功能substr(),開始在指定的位置。

語法:SUBSTR(string_name,START_POS,length_to_cut)

0

對於這一點,使用substr()得到字符串中的字符。

例子:

<?php 
    // substr(string, position, limit) 
    echo substr('welcome', 1, 1);  // It display 'e' 
?> 

希望它可以幫助..

0
User substr function . It takes three parameter 
Ist is string 
2nd is start value 
3rd is length. Remeber it start count from 0 
$string ='ABCD'; 
echo substr($string,1,1); 
// will out put B 
相關問題