Php admin value upload tmp dir

sys_get_temp_dir

Returns the path of the directory PHP stores temporary files in by default.

Parameters

This function has no parameters.

Return Values

Returns the path of the temporary directory.

Examples

Example #1 sys_get_temp_dir() example

// Create a temporary file in the temporary
// files directory using sys_get_temp_dir()
$temp_file = tempnam ( sys_get_temp_dir (), ‘Tux’ );

The above example will output something similar to:

See Also

User Contributed Notes 11 notes

If running on a Linux system where systemd has PrivateTmp=true (which is the default on CentOS 7 and perhaps other newer distros), this function will simply return «/tmp», not the true, much longer, somewhat dynamic path.

As of PHP 5.5.0, you can set the sys_temp_dir INI setting so that this function will return a useful value when the default temporary directory is not an option.

This function does not always add trailing slash. This behaviour is inconsistent across systems, so you have keep an eye on it.

It’s not documented but this function does not send the path with trailing spaces, actually it drops the slash if it exists.

it should be mentioned that the return value of sys_get_temp_dir() can be set using the ini-directive ‘sys_temp_dir’ globally as well as per directory by using
php_admin_value sys_temp_dir /path/to/tmp

A very helpful thing to note when on Linux:

If you are running PHP from the commandline you can use the environment variable: TMPDIR — to change the location without touching php.ini. — This should work on most versions of PHP.

Example file: test.php
echo sys_get_temp_dir () . PHP_EOL ;
?>

And then running:

TMPDIR=/custom/location php test.php
/custom/location

This function does not account for virtualhost-specific modifications to the temp path and/or open_basedir:


php_admin_value open_basedir /home/user
php_admin_value upload_tmp_dir /home/user/tmp
php_admin_value session.save_path /home/user/tmp

Within this config it still returns /tmp

That is important for the purposes of building paths through concatenation to know that sys_get_temp_dir does not include a path separator at the end.

So, sys_get_temp_dir() will return whatever your temp dir is set to, by default:

If you attempted to concatenate another dir name temp and use the following:

That would actually attempt to generate:
/tmpsome_dir

It would likely result in a permission error unless you are running a php script as a super user.

Instead you would want to do:
mkdir( sys_get_temp_dir() . DIRECTORY_SEPARATOR. ‘some_dir’ );

which would create:
/tmp/some_dir

I don’t know if Windows or other platforms include a directory separator at the end. So if you are writing something a bit more general you may want to check for the path separator at the end and if it is not there append it.

On windows, when PHP is used as CLI, this function will return the temp directory for the current user e.g. C:\Users\JohnSmith\AppData\Local\Temp\9 instead of C:\Windows\Temp.

Источник

Vesta Control Panel — Forum

Например я загружаю фал на сервер.
В php.ini не указана папка хранения временных файлов при загрузке.

В итоге временные файлы находятся по данным возвращаемым скриптом php в:

/home/admin/web/мойсайт.ru/public_html/

Мне нужно чтобы временные файлы и итоговый файл были в одной папке ( она у меня ramdisk) по адресу:

/home/admin/web/мойсайт.ru/public_html/memory_cards_server/

1)Как это правильно сделать в php.ini для временных файлов
2)Как указать путь в скрипте php для сохранения файла.

Нужно для увеличения скорости работы за счет использования Ramdisk так как будут приходить постоянно новые файлы и их загружать с сервера будут достаточно активно.

Mr.Erbutw Posts: 1040 Joined: Tue Apr 29, 2014 10:05 pm
Os: CentOS 6x Web: apache + nginx

Re: Как правильно указывать пути в php.ini

Post by Mr.Erbutw » Thu Jun 25, 2015 8:04 pm

illusion wrote: Например я загружаю фал на сервер.
В php.ini не указана папка хранения временных файлов при загрузке.

upload_tmp_dir string

Временная директория, используемая для хранения файлов во время закачивания. Должна быть доступна для записи пользователю, от имени которого запущен PHP. Если не указана, используется директория по умолчанию для вашей системы.

Re: Как правильно указывать пути в php.ini

Post by illusion » Thu Jun 25, 2015 8:52 pm

Я хотел узнать как мне путь указывать в upload_tmp_dir , а также путь в php скрипте, который принимает файл:
1) так

 /home/admin/web/мойсайт.ru/public_html/memory_cards_server/

или еще как то по другому?

Источник

Читайте также:  Найти модуль числа java
Оцените статью