0

以下 PHP 代码在 javascript 中的等价物是什么?

$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); 
4

1 回答 1

1

实际上没有,因为 javascript 中没有 realpath() 等价物。Realpath() 需要访问服务器的文件系统,而 javascript 在客户端执行

于 2012-12-26T21:26:38.333 回答