/
vshmidt
/
php
Обзор
Документация
Войти
/
vshmidt
/
php
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
ext/spl/tests/SplFileInfo_getPerms_basic.phpt
30 строк
733 B
Gabriel Caruso
Use EXPECT instead of EXPECTF when possible
20 фев 2018, 23:53
20 фев 2018, 23:53
ded3d98
Код
Авторство
О чём код?
--TEST-- SPL: Spl File Info test getPerms --CREDITS-- Cesare D'Amico <cesare.damico@gruppovolta.it> Andrea Giorgini <agiorg@gmail.com> Filippo De Santis <fd@ideato.it> Daniel Londero <daniel.londero@gmail.com> Francesco Trucchia <ft@ideato.it> Jacopo Romei <jacopo@sviluppoagile.it> #Test Fest Cesena (Italy) on 2009-06-20 --SKIPIF-- <?php if (substr(PHP_OS, 0, 3) == 'WIN') die("skip this test not for Windows platforms"); ?> --FILE-- <?php //file touch ('SplFileInfo_getPerms_basic.txt'); chmod('SplFileInfo_getPerms_basic.txt', 0557); $fileInfo = new SplFileInfo('SplFileInfo_getPerms_basic.txt'); var_dump($fileInfo->getPerms() == 0100557); ?> --CLEAN-- <?php unlink('SplFileInfo_getPerms_basic.txt'); ?> --EXPECT-- bool(true)