关于preg_match()函数,下面程序的输出结果是( )。
$str='http://www.123.com/a.png';
$pat='/\.(gif|jpg|png)$/';
preg_match($pat, $str, $arr);
echo $arr[1];
A.正确答案Da.png
B.a
C..png
D.png
$str='http://www.123.com/a.png';
$pat='/\.(gif|jpg|png)$/';
preg_match($pat, $str, $arr);
echo $arr[1];
关于preg_match()函数,下面程序的输出结果是( )。
$str='http://www.123.com/a.png';
$pat='/\.(gif|jpg|png)$/';
preg_match($pat, $str, $arr);
echo $arr[1];
A.正确答案Da.png
B.a
C..png
D.png