$p = '/<li>(.*?)<\/li>/';
preg_match_all($p, $str, $matches);
preg_match_all($p, $str, $matches);
2016-03-01
int preg_match ( string $pattern , string $subject [, array &$matches [, int $flags = 0 [, int $offset = 0 ]]] )
pattern
要搜索的模式,字符串类型。
subject
输入字符串。
matches
如果提供了参数matches,它将被填充为搜索结果。 $matches[0]将包含完整模式匹配到的文本, $matches[1] 将包含第一个捕获子组匹配到的文本,以此类推。
这么看大家就能理解了。
pattern
要搜索的模式,字符串类型。
subject
输入字符串。
matches
如果提供了参数matches,它将被填充为搜索结果。 $matches[0]将包含完整模式匹配到的文本, $matches[1] 将包含第一个捕获子组匹配到的文本,以此类推。
这么看大家就能理解了。
2016-02-29
<?php
//连接数据库
mysql_connect('127.0.0.1', 'code1', '');
mysql_select_db('code1');
mysql_query("set names 'utf8'");
//在这里进行数据查询
$res=mysql_query('select*from user limit1');
$row = mysql_fetch_assoc($res);
var_dump($row);
//连接数据库
mysql_connect('127.0.0.1', 'code1', '');
mysql_select_db('code1');
mysql_query("set names 'utf8'");
//在这里进行数据查询
$res=mysql_query('select*from user limit1');
$row = mysql_fetch_assoc($res);
var_dump($row);
2016-02-29