質問編集履歴
1
書き方の変更
test
CHANGED
File without changes
|
test
CHANGED
@@ -2,7 +2,9 @@
|
|
2
2
|
|
3
3
|
ファンクションの書き方がうまくいきません。
|
4
4
|
|
5
|
+
修正しました。test.phpファイルのAPACHEのコレクションをけすために
|
5
6
|
|
7
|
+
in.phpファイルに接続することで可能にしようとしています。
|
6
8
|
|
7
9
|
|
8
10
|
|
@@ -18,11 +20,13 @@
|
|
18
20
|
|
19
21
|
|
20
22
|
|
21
|
-
### PHP
|
23
|
+
### PHP in.phpファイル
|
22
24
|
|
23
25
|
|
24
26
|
|
25
|
-
```
|
27
|
+
```
|
28
|
+
|
29
|
+
|
26
30
|
|
27
31
|
public function drop()
|
28
32
|
|
@@ -33,3 +37,25 @@
|
|
33
37
|
}
|
34
38
|
|
35
39
|
```
|
40
|
+
|
41
|
+
```php test.php
|
42
|
+
|
43
|
+
<?php
|
44
|
+
|
45
|
+
|
46
|
+
|
47
|
+
require('in.php');
|
48
|
+
|
49
|
+
|
50
|
+
|
51
|
+
$mongo = new MongoDB\Driver\Manager('mongodb://localhost:27017');
|
52
|
+
|
53
|
+
$collection = $mongo->APACHE;
|
54
|
+
|
55
|
+
$response = $collection->drop();
|
56
|
+
|
57
|
+
|
58
|
+
|
59
|
+
?>
|
60
|
+
|
61
|
+
```
|