Komut Satırı üzerinde PHP kullanarak bilgimi genişletmek için çalışılıyor.
Şu anda XAMPP varsayılan kurulum var ve benim Çevre Değişken kurdunuz.
Ben gibi basit komut dosyalarını çalıştırmak mümkün oldum:
<?php echo 'hello world!'; ?>
Questions ~
Nerede ben kullanıyorum komut saklamak? Şu anda ben yapıyorum:
C: \ Users \ Ross> php c: \ helloworld.php
çalışır. Bu bir yol her zaman belirtmeniz gerekir anlamına mı geliyor? Ya benim c içine php dosyalarını saklamak gerekir:> xampp \ php dizin? Bunu denedim ve çalışmak için görünmüyor.
Ne kabul edilen "en iyi uygulama" olacaktır.
2nd question Could someone explain why this doesn't work:
<?php
fwrite(STDOUT, "Enter file name:\n");
$file=fgets(STDIN);
print 'you entered...' . $file;
$fp=fopen($file,'r');
if(!$fp)
{
print 'File could not be opened..';
}
else
{
/* show file pointer */
print($fp);
}
?>
ve sonra yapmam:
C:\Users\Ross>php c:\file.php
Enter file name:
c:\foo.txt
you entered...c:\foo.txt
Warning: fopen(c:\foo.txt): failed to open stream: Invalid argument in C:\file.php on line 6
File could not be opened..
"Foo.txt" aynı dizinde olduğunu ve var yok.
Herhangi bir açıklama için teşekkürler.