注意这里
$term_instant=term_class->this_Term();

解决方案 »

  1.   

    1、
    Class Term
    {
    var $term;
    .....2、
    $term_class = new Term();
    $term_instant = $term_class->this_Term();
      

  2.   

    No, it doesn't make sence.
    And all the class content was printed on the interface.
    And Fatal error: Cannot instantiate non-existent class: term in 
    -->point to 
    $term_class_1 = new Term();
     Can you help ?
      

  3.   

    sorry,  point to 
    $term_class = new Term();
      

  4.   

    Finally, I found my error
    --> I did not add <?php at the function fileThanks, everyone