mirror of
https://github.com/php/php-src.git
synced 2025-08-19 17:04:47 +02:00
- symlink, hardlink & co support (2/2) & (3/3)
This commit is contained in:
parent
39695546ca
commit
4b9ddc9403
4 changed files with 280 additions and 4 deletions
|
@ -1576,7 +1576,7 @@ ZEND_BEGIN_ARG_INFO(arginfo_levenshtein, 0)
|
|||
ZEND_END_ARG_INFO()
|
||||
/* }}} */
|
||||
/* {{{ link.c */
|
||||
#ifdef HAVE_SYMLINK
|
||||
#if defined(HAVE_SYMLINK) || defined(PHP_WIN32)
|
||||
ZEND_BEGIN_ARG_INFO(arginfo_readlink, 0)
|
||||
ZEND_ARG_INFO(0, filename)
|
||||
ZEND_END_ARG_INFO()
|
||||
|
@ -2809,7 +2809,7 @@ const zend_function_entry basic_functions[] = { /* {{{ */
|
|||
PHP_FE(rawurldecode, arginfo_rawurldecode)
|
||||
PHP_FE(http_build_query, arginfo_http_build_query)
|
||||
|
||||
#ifdef HAVE_SYMLINK
|
||||
#if defined(HAVE_SYMLINK) || defined(PHP_WIN32)
|
||||
PHP_FE(readlink, arginfo_readlink)
|
||||
PHP_FE(linkinfo, arginfo_linkinfo)
|
||||
PHP_FE(symlink, arginfo_symlink)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue