質問編集履歴
3
コード
title
CHANGED
File without changes
|
body
CHANGED
@@ -14,4 +14,5 @@
|
|
14
14
|
}
|
15
15
|
return $myrs;
|
16
16
|
}
|
17
|
+
コード
|
17
18
|
```
|
2
コード
title
CHANGED
File without changes
|
body
CHANGED
@@ -8,9 +8,10 @@
|
|
8
8
|
|
9
9
|
--前後ソース
|
10
10
|
|
11
|
-
$max_row = $ws['max_row'];
|
11
|
+
``` $max_row = $ws['max_row'];
|
12
12
|
$max_col = $ws['max_col'];
|
13
13
|
$myrs = getTableData ( &$ws, &$exc ); // Get structure and data of worksheet
|
14
14
|
}
|
15
15
|
return $myrs;
|
16
|
-
}
|
16
|
+
}
|
17
|
+
```
|
1
前後ソース追加
title
CHANGED
File without changes
|
body
CHANGED
@@ -4,4 +4,13 @@
|
|
4
4
|
|
5
5
|
Parse error: syntax error, unexpected '&' in /home/users/2/test/web/admin/App/Service/ExcelClass.php on line 220
|
6
6
|
|
7
|
-
どのように修正すればよろしいでしょうか?
|
7
|
+
どのように修正すればよろしいでしょうか?
|
8
|
+
|
9
|
+
--前後ソース
|
10
|
+
|
11
|
+
$max_row = $ws['max_row'];
|
12
|
+
$max_col = $ws['max_col'];
|
13
|
+
$myrs = getTableData ( &$ws, &$exc ); // Get structure and data of worksheet
|
14
|
+
}
|
15
|
+
return $myrs;
|
16
|
+
}
|