Home  • Courses • Software Engineering
Static variable: <?php function demo(){ STATIC $count=0; //here $count is static variable $count++; echo $count; } demo(); demo(); demo(); ?>

Comments 1


1 2 3
Copyright © 2024. Powered by Intellect Software Ltd