• 2022-06-07
    写出下列程序的输出结果( )<?php $count =5; function get_count(){ static $count =0; return $count++;} echo $count; ++$count; echo get_count(); echo get_count();?>