Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
このコマンドを実行すると:
php -q /var/www/project/test.php
ただし、次のコマンドを実行しないと機能しません。
cd /var/www/project/
CD を実行せずにこのコマンドを実行するのを手伝ってくれませんか?
ファイルを完全に修飾しmail.txtます。PHP ファイルを次のように変更します。
mail.txt
<?php $fh=fopen('/var/www/project/mail.txt','w'); fwrite($fh,'Success'); fclose($fh); ?>