質問編集履歴

1

2015/02/05 03:09

投稿

impres
impres

スコア56

test CHANGED
File without changes
test CHANGED
@@ -6,20 +6,16 @@
6
6
 
7
7
 
8
8
 
9
- ```lang-php
10
-
11
9
  <?php
12
10
 
13
11
  if( preg_match( '/(hoge\n+hoge\n+)/i' , array( 'file' , 'hoge hoge => huga', test') , $match) )
14
12
 
15
13
  {
16
14
 
17
- $items[] = $match[1];
15
+ $items[] = $match[1];
18
16
 
19
- }else{
17
+ }else{
20
18
 
21
19
  }
22
20
 
23
21
  ?>
24
-
25
- ```