PHP getcwd() 函数
PHP 教程
· 2019-01-24 12:58:48
实例
获取当前工作目录:
<?php
echo getcwd()
?>
echo getcwd()
?>
结果:
/home/php
定义和用法
getchwd() 函数返回当前工作目录。
语法
getcwd();
技术细节
| 返回值: | 成功则返回当前工作目录。失败则返回 FALSE。 |
|---|---|
| PHP 版本: | 4.0+ |
点击查看所有 PHP 教程 文章: https://www.codercto.com/courses/l/5.html
How to Think Like a Computer Scientist: Learning with Python
Allen B. Downey、Jeffrey Elkner、Chris Meyers / Green Tea Press / 2002-1-4 / USD 24.95
""How to Think Like a Computer Scientist"" is an introduction to programming using Python, one of the best languages for beginners. This is a Free Book -- you can download it from thinkpython.com. But......一起来看看 《How to Think Like a Computer Scientist: Learning with Python》 这本书的介绍吧!