Ben aşağıdaki seçenekler nasıl benzer komut satırında PHP kod satırı çalışabiliyor olmak istiyorum:
:~> perl -e "print 'hi';"
:~> python -c "print 'hi'"
:~> ruby -e "puts 'hi'"
Ben yapabilmek istiyorum:
:~> php "echo 'hi';"
Ben bunu kullanmaya çalıştığınızda ancak kullanılabilir olması için görünmüyor, ben php için gereken ne yapabilirim bir-r seçeneği olduğunu okudum. Ben bir-r seçeneği mevcut olan 4.4.9 PHP 5.2.13 ve PHP kullanarak ve ne denedim.
Çalışır, ancak bunu yapmak için bir daha "doğru" yolu olmalı gibi hissediyorum sırf ben onun büyük bir hayranı değilim - Ben bu senaryoyu (ben run_php.php denilen) yazdı.
#!/usr/bin/php5 -q
<?php echo eval($argv[1]); ?>
Benim soru şudur:-r seçeneği var mı? Yardım - Öyleyse ben çalıştırdığınızda, neden mevcut değildir? No-r seçeneği varsa, ne (bir aracı komut mümkünse yazmadan) Bunu yapmanın en iyi yolu nedir?
Teşekkürler!
=== DÜZENLEME ===
Ben yukarıda çok açık olduğunu sanmıyorum, çünkü,-r seçeneği benim için kullanılabilir değil. İşte ben koşuyorum PHP iki sürümleri için php-h çıktı.
PHP 4.4.9
Usage: php [-q] [-h] [-s] [-v] [-i] [-f <file>]
php <file> [args...]
-a Run interactively
-C Do not chdir to the script's directory
-c <path>|<file> Look for php.ini file in this directory
-n No php.ini file will be used
-d foo[=bar] Define INI entry foo with value 'bar'
-e Generate extended information for debugger/profiler
-f <file> Parse <file>. Implies `-q'
-h This help
-i PHP information
-l Syntax check only (lint)
-m Show compiled in modules
-q Quiet-mode. Suppress HTTP Header output.
-s Display colour syntax highlighted source.
-v Version number
-w Display source with stripped comments and whitespace.
-z <file> Load Zend extension <file>.
php 5.2.13
Usage: php [-q] [-h] [-s] [-v] [-i] [-f <file>]
php <file> [args...]
-a Run interactively
-C Do not chdir to the script's directory
-c <path>|<file> Look for php.ini file in this directory
-n No php.ini file will be used
-d foo[=bar] Define INI entry foo with value 'bar'
-e Generate extended information for debugger/profiler
-f <file> Parse <file>. Implies `-q'
-h This help
-i PHP information
-l Syntax check only (lint)
-m Show compiled in modules
-q Quiet-mode. Suppress HTTP Header output.
-s Display colour syntax highlighted source.
-v Version number
-w Display source with stripped comments and whitespace.
-z <file> Load Zend extension <file>.
NO-r seçeneği vardır. Ben-r seçeneğini kullanmaya çalıştığınızda alıyorum:
Error in argument 1, char 2: option not found r
Karışıklık için özür dilerim.