PHP sscanf() 函數(shù)
PHP sscanf() 函數(shù)
實(shí)例
Parse a string:
<?php
$str = "age:30 weight:60kg";
sscanf($str,"age:%d weight:%dkg",$age,$weight);
// show types and values
var_dump($age,$weight);
?>
$str = "age:30 weight:60kg";
sscanf($str,"age:%d weight:%dkg",$age,$weight);
// show types and values
var_dump($age,$weight);
?>
運(yùn)行實(shí)例 ?
sscanf() 函數(shù)根據(jù)指定的格式解析來自一個字符串的輸入。 sscanf() 函數(shù)基于格式字符串解析字符串到變量中。
如果只向該函數(shù)傳遞兩個參數(shù),數(shù)據(jù)將以數(shù)組的形式返回。否則,如果傳遞了額外的參數(shù),那么被解析的數(shù)據(jù)會存儲在這些參數(shù)中。如果區(qū)分符的數(shù)目大于包含它們的變量的數(shù)目,則會發(fā)生錯誤。不過,如果區(qū)分符的數(shù)目小于包含它們的變量的數(shù)目,則額外的變量包含 NULL。
相關(guān)函數(shù):
語法
sscanf(string,format,arg1,arg2,arg++)
參數(shù) | 描述 |
---|---|
string | 必需。規(guī)定要讀取的字符串。 |
format | 必需。規(guī)定要使用的格式。 可能的格式值:
附加的格式值。必需放置在 % 和字母之間(例如 %.2f):
注釋:如果使用多個上述的格式值,它們必須按照上面的順序進(jìn)行使用,不能打亂。 |
arg1 | 可選。存儲數(shù)據(jù)的第一個變量。 |
arg2 | 可選。存儲數(shù)據(jù)的第二個變量。 |
arg++ | 可選。存儲數(shù)據(jù)的第三、四個變量。依此類推。 |
技術(shù)細(xì)節(jié)
返回值: | 如果只向該函數(shù)傳遞兩個參數(shù),數(shù)據(jù)將以數(shù)組的形式返回。否則,如果傳遞了額外的參數(shù),那么被解析的數(shù)據(jù)會存儲在這些參數(shù)中。如果區(qū)分符的數(shù)目大于包含它們的變量的數(shù)目,則會發(fā)生錯誤。不過,如果區(qū)分符的數(shù)目小于包含它們的變量的數(shù)目,則額外的變量包含 NULL。 |
---|---|
PHP 版本: | 4.0.1+ |
更多實(shí)例
實(shí)例 1
使用格式值 %s、%d 和 %c:
<?php
$str = "If you divide 4 by 2 you'll get 2";
$format = sscanf($str,"%s %s %s %d %s %d %s %s %c");
print_r($format);
?>
$str = "If you divide 4 by 2 you'll get 2";
$format = sscanf($str,"%s %s %s %d %s %d %s %s %c");
print_r($format);
?>
運(yùn)行實(shí)例 ?

相關(guān)文章
- PHP 類型比較
- PHP 常量
- PHP 數(shù)組排序
- PHP 魔術(shù)常量
- PHP $_POST 變量
- PHP 文件上傳
- PHP Cookie
- PHP Secure E-mails
- PHP 高級過濾器
- PHP array_count_values() 函數(shù)
- PHP array_key_first() 函數(shù)
- PHP array_keys() 函數(shù)
- PHP array_udiff_uassoc() 函數(shù)
- PHP array_walk_recursive() 函數(shù)
- PHP count() 函數(shù)
- PHP shuffle() 函數(shù)
- PHP 5 Array 函數(shù)
- PHP 5 Date/Time 函數(shù)
- PHP Filter 函數(shù)
- PHP PDO