【发布时间】:2020-09-16 10:12:25
【问题描述】:
请在下面将 From 更改为 To:
来自:http://localhost:8082/Test/Students/index
收件人:http://localhost:8082/Anything/Students/index
【问题讨论】:
标签: php cakephp-3.0
请在下面将 From 更改为 To:
来自:http://localhost:8082/Test/Students/index
收件人:http://localhost:8082/Anything/Students/index
【问题讨论】:
标签: php cakephp-3.0
您可以使用此功能
重命名(旧、新、上下文);
Eg.
<?php
rename("images","pictures"); //change name of dir
rename("/test/file1.txt","/home/docs/my_file.txt"); //change dir and file
?>
【讨论】: