如何獲取字符串的某些部分(在符號中)。 例如:php - 複製字符串的某些部分
$string = 'one two three';
$numSymbols = 7;
%what should I do%
$res_string = 'one two';
請幫忙。
如何獲取字符串的某些部分(在符號中)。 例如:php - 複製字符串的某些部分
$string = 'one two three';
$numSymbols = 7;
%what should I do%
$res_string = 'one two';
請幫忙。
您正在尋找substr函數,我會說。
在你的情況,這裏有一個例子:
$string = 'one two three';
$numSymbols = 7;
$res_string = substr($string, 0, $numSymbols);
var_dump($res_string);
,你會得到:
string 'one two' (length=7)
參數:
使用PHP的方法substr
:
$string = 'one two three';
$numSymbols = 7;
$res_string = substr($string, 0, $numSymbols);
您應該使用substr( )
例子:
$string = 'one two three';
$res_string = substr($string, 0, 7);// $res_string == 'one two'
* 「在你* R *案」 – arbales 2009-09-13 09:09:56
@arbales:這是嘗試鍵入太快的問題:-(謝謝!我編輯了這個錯字(和其他一些錯誤) – 2009-09-13 09:11:19