Line By Lile Compilation
Posted: Tue Dec 09, 2008 11:46 pm
How Can we compile line by line in php. 
A community of PHP developers offering assistance, advice, discussion, and friendship.
http://forums.devnetwork.net/
Code: Select all
d11wtq@w3style.co.uk:~$ php -a
Interactive shell
php > $foo = "bar";
php > function sayTwice($term) {
php { echo str_repeat($term, 2);
php { }
php > sayTwice($foo);
barbar
php > exit();
d11wtq@w3style.co.uk:~$