2010-08-02 79 views
1

我在drupal節點中有一個多值cck字段。該字段被稱爲field_multip。我需要知道在這一領域的項目數,例如3以下找到多值字段的長度

我本來以爲length會做的伎倆的情況,但既不$node->field_multip.length也不$node->field_multip.length()爲我工作。

field_multip 
    [0] 
     [id] 
     [sec] 
    [1] 
     [id] 
     [sec] 
    [2] 
     [id] 
     [sec] 

回答

7

你想用count()

$itemcount = count($node->field_multip); 

應該這樣做。