回答編集履歴
2
json用header追加
test
CHANGED
@@ -44,6 +44,8 @@
|
|
44
44
|
|
45
45
|
|
46
46
|
|
47
|
+
header('content-type: application/json; charset=utf-8');
|
48
|
+
|
47
49
|
echo json_encode($output);
|
48
50
|
|
49
51
|
|
1
追記
test
CHANGED
@@ -19,3 +19,59 @@
|
|
19
19
|
|
20
20
|
|
21
21
|
としてください
|
22
|
+
|
23
|
+
|
24
|
+
|
25
|
+
2019-04-02 13:23追記
|
26
|
+
|
27
|
+
PHPの中身は共有できません。(serializeなど方法はあるけどセキュリティ的によろしくない)
|
28
|
+
|
29
|
+
なのでこの場合API化してJSON形式でやり取りするのがベストでしょう。
|
30
|
+
|
31
|
+
その場合
|
32
|
+
|
33
|
+
|
34
|
+
|
35
|
+
```php
|
36
|
+
|
37
|
+
<?php
|
38
|
+
|
39
|
+
//送る方
|
40
|
+
|
41
|
+
$output['headerImg'] = 'http://hogehoge.com/headerImg.jpg';
|
42
|
+
|
43
|
+
$output['topLink'] = 'http://hogehoge.com/top.php';
|
44
|
+
|
45
|
+
|
46
|
+
|
47
|
+
echo json_encode($output);
|
48
|
+
|
49
|
+
|
50
|
+
|
51
|
+
```
|
52
|
+
|
53
|
+
|
54
|
+
|
55
|
+
とし
|
56
|
+
|
57
|
+
|
58
|
+
|
59
|
+
```php
|
60
|
+
|
61
|
+
<?php
|
62
|
+
|
63
|
+
//受ける方
|
64
|
+
|
65
|
+
|
66
|
+
|
67
|
+
$apiResponse = file_get_contents('http://hogehoge.com/imgsrc.php');
|
68
|
+
|
69
|
+
$input = json_decode($apiResponse,true);
|
70
|
+
|
71
|
+
echo $input['topLink'];
|
72
|
+
|
73
|
+
```
|
74
|
+
|
75
|
+
|
76
|
+
|
77
|
+
で試してみてください。
|