释放双眼,带上耳机,听听看~!
参考网址:
https://www.cnblogs.com/-run/articles/2371078.html
https://www.jb51.net/article/48765.htm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18 1function zhengZe()
2
3{
4
5$subject = "url(\"shop/user/edit\",['id'=>'__id__'])";
6
7dump($subject);
8
9$pattern = '/(\([\'\"])(.*)[\'\"],/';
10
11$ret = preg_match_all($pattern, $subject, $matches);
12
13dump($ret);
14
15dump($matches);
16
17}
18