문제

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