module global
<?php //module_caller.php require_once('test_module.php'); test(); if(2>1) { global $g_analysis_error; echo $g_analysis_error; }
<?php //test_module.php global $g_analysis_error; function test() { global $g_analysis_error; $g_analysis_error="hi world!"; } ?>

                
            
        
浙公网安备 33010602011771号