什么是$ args [basename($ img_path)] ='@'的等价物。真实路径($ img_path);在JavaScript中?

时间:2012-12-26 20:07:29

标签: php javascript ajax equivalent

在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); 

1 个答案:

答案 0 :(得分:1)

实际上没有,因为javascript中没有相当于realpath()的东西。 Realpath()需要访问服务器的文件系统,而javascript则在客户端执行