本文整理汇总了PHP中helper::rmdir方法的典型用法代码示例。如果您正苦于以下问题:PHP helper::rmdir方法的具体用法?PHP helper::rmdir怎么用?PHP helper::rmdir使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类helper
的用法示例。
在下文中一共展示了helper::rmdir方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: tearDown
public function tearDown()
{
/* Tear Down Routine */
chmod($this->_path, 0700);
if (!@unlink($this->_file)) {
throw new Exception('Error deleting file "' . $this->_file . '".');
}
helper::rmdir($this->_path);
}
示例2: tearDown
public function tearDown()
{
/* Tear Down Routine */
if ($this->_dataDirCreated) {
helper::rmdir($this->_path);
} else {
if (!@unlink($this->_file)) {
throw new Exception('Error deleting file "' . $this->_file . '".');
}
}
}
示例3: tearDown
public function tearDown()
{
/* Tear Down Routine */
helper::rmdir($this->_path . DIRECTORY_SEPARATOR);
}
示例4: tearDown
public function tearDown()
{
/* Tear Down Routine */
helper::rmdir(PATH . 'tmp');
}
示例5: tearDown
public function tearDown()
{
/* Tear Down Routine */
helper::rmdir($this->_path);
}
示例6: tearDown
public function tearDown()
{
/* Tear Down Routine */
chmod($this->_invalidPath, 0700);
helper::rmdir($this->_path);
}