Quick actions

cmd+k|ctrl+k

Navigation

Languages

test_mkdir

Snippet info

Language

Php

Visibility

public

Author

fenghestudio

Created

2019-09-11T05:24:33Z

Updated

2019-09-11T05:24:33Z

<?php

// Desired folder structure
$structure = './depth1/depth2/depth3/';

// To create the nested structure, the $recursive parameter 
// to mkdir() must be specified.
if (!mkdir($structure, 0, true)) {
    die('Failed to create folders...');

}
// ...
?>
INFO