I am really really new programmer.

I have PHP 5.3 on my mac os x.

I recently installed Zend Server 6.1.0 for php version 5.4 and it exists in /usr/local/zend/bin

when i type which php it says /usr/bin/php

how do i get to use to one in /usr/local/zend/bin ?

有帮助吗?

解决方案

you can make sure /usr/local/zend/bin is presented prior to /usr/bin/ in your PATH environment variable.

export PATH="/usr/local/zend/bin:$PATH"
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top