WPM
100
CPM
100
Errors
0
Time
15Min
Accuracy
100%
Start PHP code typing Practice. Get many PHP codes for addition, php functions, variable, constant and file system in php typing practice.Click on the area below to start typing.

S.No.Paragraph : Practice repeatedly whatever you would like most for full fifteen minutes Lessionsclick to Practice
1// function to demonstrate static variables function static_var(){ // static variable static $num = 5; $sum = 2; $sum++; $num++; echo $num, "\n"; echo $sum, "\n"; } // first function call static_var(); // second function call static_var();1.5 function to demonstrate static variables