<?=$news->index_gg(1,8);?>
<?=$news->indexlc(4, 8);?>
本人不懂php,帮我解释一下这是什么意思

解决方案 »

  1.   

    调用news对象的index_gg函数和indexlc函数
      

  2.   

    应该在其他地方还有这样的代码$news = new 类$news是个对象句柄,index_gg和indexlc是对象的方法,括号里的是方法的参数
      

  3.   

    <?=$news->index_gg(1,8);?>
    <?=$news->indexlc(4, 8);?><?php
    echo $new->index_gg(1,8);
    ?>
    ……
      

  4.   


    这里采用是asp的输出记录的方法.相当于<? echo $news->index_gg();?>