17/07
2018
dev-master
9999999-dev
MIT
The Requires
- php >7.1
- ext-yaml *
- ext-json *
The Development Requires
File access functions, (*2)
compser require phore/filesystem
echo phore_uri("/tmp/some.file")->withDirName();
will result in, (*3)
/tmp
echo phore_uri("/tmp")->withSubPath("./some/other/file")
/tmp/some/other/file
phore_uri("/tmp")->assertIsFile()->assertIsWritable();
phore_uri("/tmp/somefile.yml")->assertFile()->get_yaml();
Will be unlinked when object destructs., (*4)
$file = new PhoreTempFile();
MIT