質問編集履歴
1
実行結果を追加しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -68,14 +68,64 @@
|
|
68
68
|
|
69
69
|
### 試したこと
|
70
70
|
|
71
|
-
|
72
|
-
|
73
|
-
こ
|
71
|
+
コンテンツタイプの指定、ヘッダー情報がないことでのエラーではないかと下記コードを実行しましたがエラーになりました。
|
74
72
|
|
75
73
|
|
76
74
|
|
75
|
+
```php
|
76
|
+
|
77
|
-
|
77
|
+
<?php
|
78
78
|
|
79
79
|
|
80
80
|
|
81
|
+
$url = "https://www.hellowork.mhlw.go.jp/kensaku/GECA110010.do";
|
82
|
+
|
83
|
+
$data = array(
|
84
|
+
|
85
|
+
"tDFK1CmbBox" => 13,
|
86
|
+
|
87
|
+
"fwListNaviBtn1" => 1
|
88
|
+
|
89
|
+
);
|
90
|
+
|
91
|
+
|
92
|
+
|
93
|
+
$header = array(
|
94
|
+
|
95
|
+
"Content-Type: application/x-www-form-urlencoded",
|
96
|
+
|
97
|
+
"Content-Length: ".strlen($data)
|
98
|
+
|
99
|
+
);
|
100
|
+
|
101
|
+
|
102
|
+
|
103
|
+
$options = array("http" => array(
|
104
|
+
|
105
|
+
"method" => "POST",
|
106
|
+
|
107
|
+
"content" => http_build_query($data),
|
108
|
+
|
109
|
+
));
|
110
|
+
|
111
|
+
$text = file_get_contents($url, false, stream_context_create($options));
|
112
|
+
|
113
|
+
```
|
114
|
+
|
115
|
+
エラーメッセージ
|
116
|
+
|
117
|
+
```
|
118
|
+
|
119
|
+
Warning: strlen() expects parameter 1 to be string, array given in C:\xampp\htdocs\get_post\index.php on line 11
|
120
|
+
|
121
|
+
|
122
|
+
|
123
|
+
Notice: file_get_contents(): Content-type not specified assuming application/x-www-form-urlencoded in C:\xampp\htdocs\get_post\index.php on line 18
|
124
|
+
|
125
|
+
```
|
126
|
+
|
127
|
+
|
128
|
+
|
81
|
-
|
129
|
+
どうすれば情報を取得できるでしょうか?
|
130
|
+
|
131
|
+
よろしくお願いします。
|