laruence/php7-internal

我看鸟哥md文档中所有code引用都是 ````c,四个`

Opened this issue · 2 comments

md的code引用是 ``` + language 就够了:

try_again:
swtich (Z_TYPE_P(zv)) {
    case IS_TRING:
    break;
    case IS_ARRAY:
    break;
    ...
    case IS_REFERNCE:
    zv = Z_REFVAL_P(zv); //解引用
    goto try_again;
    break;  
}

@laruence 深入理解PHP7之REFERENCE中的 case IS_TRING 应该是IS_STRING吧

恩, 笔误