php writer code example
Example 1: php write to file
$myFile = "testFile.txt";
$fh = fopen($myFile, 'w') or die("can't open file");
$stringData = "Bobby Bopper\n";
fwrite($fh, $stringData);
$stringData = "Tracy Tanner\n";
fwrite($fh, $stringData);
fclose($fh);
Example 2: php online editor
Try this sites to write php code online:
http://www.writephponline.com/
http://sandbox.onlinephpfunctions.com/
https://paiza.io/en/projects/new
http://phptester.net/
https://www.tutorialspoint.com/execute_php_online.php
https://rextester.com/l/php_online_compiler
http://phpfiddle.org/
https://repl.it/languages/php_cli
https://www.jdoodle.com/php-online-editor/