質問編集履歴

2

書式の改善

2017/05/29 05:05

投稿

kdoama
kdoama

スコア6

test CHANGED
File without changes
test CHANGED
@@ -10,9 +10,49 @@
10
10
 
11
11
 
12
12
 
13
+ ソースコード
14
+
15
+ ```
16
+
17
+ protected function _open($url)
18
+
19
+ {
20
+
21
+ set_error_handler(function ($code, $message) {
22
+
23
+ $this->_connectionErrors[] = $message;
24
+
25
+ });
26
+
27
+ $this->_stream = fopen($url, 'rb', false, $this->_context);
28
+
29
+ restore_error_handler();
30
+
31
+
32
+
33
+ if (!$this->_stream || !empty($this->_connectionErrors)) {
34
+
35
+ throw new Exception(implode("\n", $this->_connectionErrors));
36
+
37
+ }
38
+
39
+ }
40
+
41
+ ```
42
+
43
+
44
+
45
+
46
+
13
47
  エラー内容:
14
48
 
15
49
  fopen(): send of 8192 bytes failed with errno=11 Resource temporarily unavailable
50
+
51
+
52
+
53
+ ※POSTデータを少なくすると、上手くいくことは確認しました。
54
+
55
+ 送信データを少なくするしか方法はないのでしょうか。
16
56
 
17
57
 
18
58
 

1

誤字修正

2017/05/29 05:04

投稿

kdoama
kdoama

スコア6

test CHANGED
File without changes
test CHANGED
@@ -1,4 +1,4 @@
1
- 現在、Cakephp3にてカハイツを行っております。
1
+ 現在、Cakephp3にて開発を行っております。
2
2
 
3
3
 
4
4