MEGA PHP API数组元素

时间:2014-05-07 09:28:12

标签: php api

我正在smartinm使用PHP中的MEGA api,可以找到here

我可以正常访问数据但是当我返回一个查询时,我得到一个具有以下值的数组。

           [0] => Array
            (
                [h] => no idea
                [p] => no idea
                [u] => no idea
                [t] => 0
                [a] => Array
                    (
                        [n] => file_name.txt
                        [c] => this_only_appears_in_images
                    )

                [k] => no idea
                [s] => no idea
                [ts] => no idea

如您所见,我不知道 h,p,u,t,a,k,s,ts 是什么。我知道' n'是名字和' c'仅在有图像文件时出现。有没有人知道每个元素代表什么?

谢谢,Niall

2 个答案:

答案 0 :(得分:1)

这是你在找什么?

  

对于每个节点,结果包含以下信息:

     
      
  • h :节点的ID
  •   
  • p :父节点(目录)的ID;
  •   
  • :节点的所有者
  •   
  • t :节点的类型:   
        
    • 0 :文件
    •   
    • 1 :目录
    •   
    • 2 :特殊节点:Root(“云端硬盘”)
    •   
    • 3 :特殊节点:收件箱
    •   
    • 4 :特殊节点:垃圾箱
    •   
  •   
  • a :节点的属性。目前只包含其名称。
  •   
  • k :节点的密钥(用于加密其内容及其属性)
  •   
  • s :节点的大小
  •   
  • ts :上次修改节点的时间。
  •   

Source

答案 1 :(得分:1)

h: The ID of the node ;
p: The ID of the parent node (directory) ;
u: The owner of the node ;
t: The type of the node:
    0: File
    1: Directory
    2: Special node: Root (“Cloud Drive”)
    3: Special node: Inbox
    4: Special node: Trash Bin
a: The attributes of the node. Currently only contains its name.
k: The key of the node (used to encrypt its content and its attributes) ;
s: The size of the node ;
ts: The time of the last modification of the node.

来源:http://julien-marchand.fr/blog/using-the-mega-api-with-php-examples/