<?php //获得当前目录 echo getcwd(); echo "<br />"; //改变为 images 目录 chdir("images"); echo "<br />"; echo getcwd(); ?>