复制代码 代码如下:
<?php list($user, $pass, $uid, $gid, $extra) = split (":", $passwd_line, 5); ?>
复制代码 代码如下:
<?php
// 分隔符可以是斜线,点,或横线
$date = "04/30/1973";
list($month, $day, $year) = split ('[/.-]', $date);
echo "Month: $month; Day: $day; Year: $year<br />/n";
?>
新闻热点
疑难解答