Является ли скриптом?

ivanov77

Новичок
Является ли php-скриптом файл с расширением .php, если в нем нет <?php ?> и соответственно нет команд?
Являешься ли ты Программистом если не написал ни строчки кода?
Конечно являешься :lol: !!!
 

MiksIr

miksir@home:~$
Пятница кончилась 4 дня назад.
fixxxer тебя то как в это затянуло...
 

WMix

герр M:)ller
Партнер клуба
http://ca3.php.net/manual/en/tutorial.firstpage.php
The point of the example is to show the special PHP tag format. In this example we used <?php to indicate the start of a PHP tag. Then we put the PHP statement and left PHP mode by adding the closing tag, ?>. You may jump in and out of PHP mode in an HTML file like this anywhere you want.
http://en.wikipedia.org/wiki/PHP
The PHP interpreter only executes PHP code within its delimiters. Anything outside its delimiters is not processed by PHP (although non-PHP text is still subject to control structures described in PHP code) . The most common delimiters are <?php to open and ?> to close PHP sections. <script language="php"> and </script> delimiters are also available, as are the shortened forms <? or <?= (which is used to echo back a string or variable) and ?> as well as ASP-style short forms <% or <%= and %>. While short delimiters are used, they make script files less portable as support for them can be disabled in the PHP configuration, and so they are discouraged.[38] The purpose of all these delimiters is to separate PHP code from non-PHP code, including HTML.[39]
http://www.php.net/manual/en/language.basic-syntax.phptags.php
When PHP parses a file, it looks for opening and closing tags, which are <?php and ?> which tell PHP to start and stop interpreting the code between them. Parsing in this manner allows PHP to be embedded in all sorts of different documents, as everything outside of a pair of opening and closing tags is ignored by the PHP parser.
найдите хоть одно доказательство ваших фантазий!
 

AmdY

Пью пиво
Команда форума
Вспомнилось
PHP:
php -r "System.out.print('Hello');"
 
  • Like
Реакции: Dovg

WMix

герр M:)ller
Партнер клуба
AmdY
я потерялся
Код:
php -r 'System.out.print("Hello");'
PHP Notice:  Use of undefined constant System - assumed 'System' in Command line code on line 1
PHP Stack trace:
PHP   1. {main}() Command line code:0
PHP Notice:  Use of undefined constant out - assumed 'out' in Command line code on line 1
PHP Stack trace:
PHP   1. {main}() Command line code:0
это вроде понятно...

а вот на другом сервере
Код:
php -r "System.out.print('Hello');"
Hello
это как?
 

Dovg

Продвинутый новичок
WMix
Конкатенация двух неопределенных констант и результата выполенения функции print с выключенным выводом ошибок.
 

WMix

герр M:)ller
Партнер клуба
спасиб, понял ) я аж офанарел поначалу !
 

fixxxer

К.О.
Партнер клуба
Пятница кончилась 4 дня назад.
fixxxer тебя то как в это затянуло...
Да как-то втянулся вот, сам не заметил =)

Пост, откуда тема вылезла, вот только что увидел. В такой постановке, конечно, да, правильный ответ - "идите в жопу с такими вопросами"
 
Сверху