1
PHP 7 yüklüdür. Php'de bir test komut dosyası var. Komut satırından başlatmaya çalışıyor.PHP 7 komut satırından nasıl çalıştırılır ...?
[[email protected]/php]# vim db_connect.php
[[email protected]/php]# php db_connect.php
The program 'php' is currently not installed. You can install it by typing: apt-get install php5-cli
[[email protected]/php]# php7 db_connect.php
No command 'php7' found, did you mean:
[[email protected]/php]# php-7 db_connect.php
php-7: command not found
[[email protected]/php]# php -v
The program 'php' is currently not installed. You can install it by typing:
apt-get install php5-cli
[[email protected]/php]# apt-get install php7-cli
E: Unable to locate package php7-cli
php7 ile başlatılacak komut nedir?
'apt-get php5-cli' yükleme kesinlikle php7'yi yüklemez. –
Bakın: [PHP 7 nasıl kurulur? on askubuntu.com] (http://askubuntu.com/questions/705880/how-to-install-php-7) –
Çalıştırdıktan sonra, db_connect yerine PDO komutlarını kullanmanızı tavsiye ederim. Bu dönemde bu sitede bulabileceğiniz güvenlik sorunları var. – Sparky256