Shows the output of 3 files all which have the same "textual" contents. Only the one created in Linux functions correctly.

-rwxr-xr-x 1 chris chris 52 2011-04-04 07:21 lin_orig.php
-rwxr-xr-x 1 chris chris 64 2011-04-04 07:21 win_copy.php
-rwxr-xr-x 1 chris chris 68 2011-04-04 07:21 win_orig.php
chris@chris-AO532h:~/puzzles/os_test$ gedit lin_orig.php &
[1] 1759
chris@chris-AO532h:~/puzzles/os_test$ ./lin_orig.php 
created in gedit 
chris@chris-AO532h:~/puzzles/os_test$ ./win_orig.php
bash: ./win_orig.php: usr/bin/php^M: bad interpreter: No such file or directory
chris@chris-AO532h:~/puzzles/os_test$ ./win_copy.php
bash: ./win_copy.php: usr/bin/php: bad interpreter: No such file or directory

Textual Contents of 3 files identical:

#!/usr/bin/php
    <?php
    echo "created in 'OS'/'App'\n";
    ?>

This line:

#!/usr/bin/php

has no observable effect. I've verified this twice now. The Windows 7 file was created in notepad++, opened in gedit and saved to the Linux file system.

I did notice that the text in gedit is not the same "size" or font. It looks different. The strange thing is the file works if I use php directly to run the script.

php myscript.php 

works

but

./myscript.php 

does not work.

How can i look at a binary representation of the file?

link|improve this question

3  
What happens when you run ./myscript.php? What if the shebang line pointed to /usr/bin/php5? – BoltClock Mar 21 '11 at 21:31
"has no effect"? Unlikely. – Ignacio Vazquez-Abrams Mar 21 '11 at 21:32
Have you checked with the alternatives system what php is selected? That is /etc/alternatives/php will also be a symbolic link, and needs to point somewhere sensible. man -k alternatives should help. – dmckee Mar 21 '11 at 21:32
Please note my edited question. The symbolic linking is working. Verified this with the "linux version" of the file. – Hiro Protagonist Apr 5 '11 at 21:13
Went back and saved all files in ASCII. This should help by eliminating the BOM and setting the Bytes / Character to 1. – Hiro Protagonist Jun 17 '11 at 20:27
feedback

5 Answers

up vote 6 down vote accepted

PHP command line script still have to have the <?php opener in them.

#!/usr/bin/php
echo "hi mom!\n";

will not work, it has to be

#!/usr/bin/php
<?php
    echo "hi mom!\n";

This is because there's no such thing as a "php script". There are only various text files that have PHP code blocks embedded within them. Even in CLI mode, PHP expects/requires to see at least one <?php block. Otherwise the interpreter won't kick in and won't see any of the code, even though you've stated it's a PHP script with the shebang.

PHP cli mode is basically a hacked-in afterthought. PHP started out as a server-side CGI script parser and has not fundamentally changed from that mode.

link|improve this answer
Please see updated question. – Hiro Protagonist Apr 5 '11 at 21:21
@Chris: You can use something like od to dump out the file in various representations (octal by default, but can be switched to hex with -x arg). The BOM shouldn't matter in a CLI php script - it only trips up web-based scripts by sending the BOM to the client which screws up header manipulation by the script. – Marc B Apr 5 '11 at 21:40
You can also see exactly what's happening to the script execution by doing strace ./myscript.php. It'll dump out the full list of syscalls made while executing the script. You'd see PHP fired up in there somewhere if it is indeed getting invoked via the shebang. – Marc B Apr 5 '11 at 21:41
Thanks Excellent info. I verified character for character they are the same in gedit except the l and the w in the file name. "od" showed me that 90%+ of the binary data is different (or shifted, did not check yet). Learning how to use advanced strace options. Thanks again for pointing me in a good direction. Once/When I find the solution, I'll post it. – Hiro Protagonist Apr 6 '11 at 22:04
Don't forget that windows uses \r\n for line breaks, and unix uses \n. That'll shift things by one byte for every line in the script. – Marc B Apr 6 '11 at 22:17
show 1 more comment
feedback

Did you run with a ./?

IE:

./myscript.php
link|improve this answer
.. and chmod 755 myscript.php – klang Mar 21 '11 at 21:40
@klang, he stated he already made it executable. "I verified myscript.php was executable" :) – Brad F Jacobs Mar 21 '11 at 21:43
Please see updated question. – Hiro Protagonist Apr 5 '11 at 21:21
feedback

My guess is that the files created on Windows have a BOM that is confusing matters.

link|improve this answer
Went back and saved all files in ASCII. This should help by eliminating the BOM and setting the Bytes / Character to 1. – Hiro Protagonist Jun 17 '11 at 20:27
feedback

Try opening it with vi(m) and you'll see the problem. It's a bad intepreter (^M) at the end of each line. Try converting it (fromdos or dos2unix), this shoul'd fix the problem ;-)

link|improve this answer
feedback

When using Notepad++ on a Windows machine, one can change the EOL character from Windows to UNIX by going to

Edit > EOL Conversion > UNIX format

EOL menu option in Notepad++

Double-check Notepad++'s status bar at the bottom-right to confirm your selection.

EOL status in Notpadd++

After saving and running from the command line, you should find that the PHP interpreter directive is now properly recognized.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.