我真的是新程序员。
我的mac os x上有PHP 5.3。
我最近为php 5.4版安装了Zend Server 6.1.0,它存在于/ usr / local / zend / bin
当我输入哪个php它/ usr / bin / php
时如何在/ usr / local / zend / bin中使用?
答案 0 :(得分:1)
您可以确保在PATH环境变量/usr/local/zend/bin
之前显示/usr/bin/
。
export PATH="/usr/local/zend/bin:$PATH"