我有一個code.php
文件類似下面其中在all-photos
文件夾生成像-this-is-a-test-21.jpg
圖像。如何將文件夾名稱(../../../)添加到PHP中的圖像名稱中?
foreach($original_images as $new_image) {
---> some coding here
$image_prefix_original = "-this-is-a-test-";
$rand = rand(1,100);
---> some coding here also
imagejpeg($new_image, $image_prefix_original .$rand.'.jpg');
}
假設我執行code.php
文件爲http://localhost/tests/photos-test/all-photos/code.php
。我的問題是如何生成圖像名稱,如tests-photos-test-all-photos-this-is-a-test-21.jpg
而不是-this-is-a-test-21.jpg
。
我不明白,你是否要求你的目錄分隔符是連字符? –
在大多數安裝中,'DIRECTORY_SEPARATOR'通常是'/'。你有沒有指定它是'-'? – BenM
您不能在文件名中使用系統目錄分隔符。 –