PHP Documentor içinde ilişkisel dizi Comment

2 Cevap php

Hey Guys, i hope someone can help me out on this one here. I use several associative arrays in my php application and i'm using php documentor to comment my sources. I never really did specified comments for the arrays in an array, but now i need to do that and dont know how.

$array = array('id' => 'test', 'class' => 'tester', 'options' => array('option1' => 1, 'option2' => 2))

So how do i comment this array in the correct way for @var and @param comments? I could do this like this, but dunno, if this is correct:

@param string $array['id']
@param string $array['class']
@param int $array['options']['option1']

Ama nasıl bu var bölümü için?

I hope someone can lead me to the right direction. Thanks in advance for any help.

Selamlar

2 Cevap

Her tuşa belgelemek, ama you can tell phpDocumentor what type it is. Olamaz

Böyle bir şey yapabilirsiniz:

/**
 * Form the array like this:
 * <code>
 * $array = array(
 *   'id'      => 'foo',          // the id
 *   'class'   => 'myClass',     // the class
 * );
 * 
 * </code>
 *
 * @var array[string]string 
 */
$array;

Şu anda kapsamlı değil ama ben bazı ipuçları için WordPress Inline Documentation Reference bakmak olacaktır.

Lütfen bağlamda hangisi uygunsa kullanın @ param ya @ var ya @ özellik,

Bu esaslara göre, bu gibi ilişkilendirilebilir bir dizi belge olabilir:

/**
 * @property array $my_array {
 *     An array of parameters that customize the way the parser works.
 *
 *     @type boolean $ignore_whitespace Whether to gobble up whitespace. Default true.
 *     @type string $error_level What the error reporting level is. Default 'none'.
 *                               Accepts 'none', 'low', 'high'.
 * }
 */