1
我可以創建位於C目錄:/ XAMP/HTTPS/Hospital_DB但 我想創建這樣一個目錄這個http://localhost:8800/Hospital_DB/的mkdir()不能與URL工作
我的代碼currrently看起來像
$loc="http://localhost:8800/Hospital_DB/";
$img_location=$loc."scan".date("/Y/n/d/");
if (!file_exists($img_location))
{
mkdir($img_location, 0777, true);
}