在javascript中完成以下PHP代码的等效内容是什么?
$img_path = "test.jpg"; // image located on my server
$args = array(
'aid' => $aid, // album id
'caption' => $img_caption, // caption for image
'uid' => $userid, // facebook user id of the poster
'format' => 'json'
);
$args[basename($img_path)] = '@' . realpath($img_path);
答案 0 :(得分:1)
实际上没有,因为javascript中没有相当于realpath()的东西。 Realpath()需要访问服务器的文件系统,而javascript则在客户端执行