質問編集履歴

3

存在しないディレクトリの内容を追記

2021/09/08 06:59

投稿

k.t.est
k.t.est

スコア49

test CHANGED
File without changes
test CHANGED
@@ -46,6 +46,16 @@
46
46
 
47
47
 
48
48
 
49
+ ディレクトリについては、eeeとfffがないケースと、fffのみがないケースがあります。
50
+
51
+ (dddを含めこれより上の階層はすでにあリます。)
52
+
53
+ いずれの場合にも、エラーが発生します。
54
+
55
+
56
+
57
+
58
+
49
59
  #環境
50
60
 
51
61
  OS : amazon linux2

2

クオテーション漏れを修正

2021/09/08 06:59

投稿

k.t.est
k.t.est

スコア49

test CHANGED
File without changes
test CHANGED
@@ -10,7 +10,7 @@
10
10
 
11
11
  ```php
12
12
 
13
- $path = "../aaa/bbb/ccc/ddd/eee/fff;
13
+ $path = "../aaa/bbb/ccc/ddd/eee/fff";
14
14
 
15
15
  if (!file_exists($path)){
16
16
 

1

ミスコード修正

2021/09/08 06:53

投稿

k.t.est
k.t.est

スコア49

test CHANGED
File without changes
test CHANGED
@@ -16,7 +16,7 @@
16
16
 
17
17
  if (mkdir($path, 0775,TRUE)){
18
18
 
19
- chmod($pdf_path, 0775);
19
+ chmod($path, 0775);
20
20
 
21
21
  }
22
22