Como instalo o PHP CLI no Mac OS X?

6

Estou executando o Mac OSX 10.8.2. Eu também sou bastante novo no Mac OSX - anteriormente, o único Mac que eu entendia era o Mac Clássico. Minhas outras estações de trabalho são Windows e Linux.

Qual é a técnica para instalar o PHP CLI no Mac OSX? Veja, eu uso o gedit para Mac e me conecto a um local de FTP ou ao meu Ubuntu Linux Server local em uma VM. Nesse editor, há um recurso onde eu posso adicionar um programa externo, e uma técnica que eu costumo usar é adicionar "php -l", o que me permite pegar o documento atual e lint verificá-lo no PHP CLI. Eu costumava fazer isso o tempo todo no Ubuntu, mas no Mac não tenho certeza de como instalar o PHP CLI.

    
por Volomike 13.01.2013 / 03:32

3 respostas

7

Ele já deveria estar presente. Digitando php --version de uma linha de comando em uma instalação do Mac OS X 10.8, recebo:

merak:~ peelman$ php --version
PHP 5.3.15 with Suhosin-Patch (cli) (built: Aug 24 2012 17:45:44) 
Copyright (c) 1997-2012 The PHP Group
Zend Engine v2.3.0, Copyright (c) 1998-2012 Zend Technologies

Se você precisar de outros utilitários, consulte o projeto Homebrew .

    
por 14.01.2013 / 03:41
0

Você também pode dar uma olhada no link para um instalador das últimas versões do PHP para o OS-X.

    
por 14.01.2013 / 07:02
0

Verifique este link se você quiser habilitar o php-cli no MAMP. Funcionou para mim bem limpa:)

A resposta que funcionou para mim: -

I had the same problem. Running MAMP on OS X Leopard Server. You need to point the system path to the MAMP php whereas now it's trying to use the default OS X install version issuing the command 'which php' at this point should show '/usr/bin/php' but we want this to point to our MAMP version instead

In terminal issue the following commands. This will rename the current OS X php to php-old, then create a new symbolic link (NOT an alias!) to the MAMP php version...

sudo mv /usr/bin/php usr/bin/php-old sudo ln -s /Applications/MAMP/bin/php5.3/bin/php usr/bin/php

which php *should now output /Applications/MAMP/bin/php5.3/bin/ You can now issue 'php -v' and you should see some output about the 5.3 version of php. Now the Kaltura install should see that php-cli is running.

If that does not work however, you can also update the php PATH in your user .profile with the following command: export PATH=/Applications/MAMP/bin/php5.3/bin:$PATH

which php *should now output /Applications/MAMP/bin/php5.3/bin/

    
por 16.04.2013 / 13:21