Often times when I see PHP that is meant to be ran from the command line, it will have this line #!/usr/bin/env php
at the top of the file like this...
#!/usr/bin/env php
<?php
// code
?>
I was wanting to know if this is meant just for when the file is ran on a Linux/Unix system or is needed for running on Windows as well?