復制代碼 代碼如下:
<?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";
?>
新聞熱點
疑難解答