php.org PHP Logo
Beginner Intermediate Advanced

Search results for: "create directory"

What is the function used in PHP to create a directory?

To create a directory in PHP, you can use the `mkdir()` function. This function takes two parameters: the directory path you want to create and option...

How can PHP be used to create a directory in a specific location outside of the current directory?

To create a directory in a specific location outside of the current directory using PHP, you can use the `mkdir()` function with the full path of the...

What is the function in PHP used to create a new folder/directory?

To create a new folder/directory in PHP, you can use the `mkdir()` function. This function takes two parameters: the directory path you want to create...

How can PHP check if a required directory exists and create it if necessary?

To check if a required directory exists in PHP and create it if necessary, you can use the `is_dir()` function to check if the directory exists, and t...

What function in PHP can be used to create a new directory?

To create a new directory in PHP, you can use the `mkdir()` function. This function takes two parameters: the directory path to be created and optiona...

Showing 1 to 5 of 10000 results

‹ 1 2 3 4 5 6 7 8 9 10 ... 1999 2000 ›
PHP.ORG

A free knowledge base for PHP developers. Open to all.

Legal

  • About
  • Contact / Imprint
  • Terms
  • FAQ

© 2025 php.org. All rights reserved.