Home
last modified time | relevance | path

Searched refs:dest (Results 26 – 50 of 104) sorted by relevance

12345

/PHP-5.6/ext/standard/tests/file/
H A Dcopy_variation6.phpt10 /* Prototype: bool copy ( string $source, string $dest );
11 Description: Makes a copy of the file source to dest.
48 foreach($dests as $dest) {
52 var_dump( copy($src_file_name, $dest) );
55 var_dump( file_exists($dest) );
58 print($dest);
66 var_dump( filesize($dest) );
69 unlink("$dest");
H A Dcopy_variation13.phpt2 Test copy() function: usage variations - src as dir and dest as an existing file(Bug #42243)
5 /* Prototype: bool copy ( string $source, string $dest );
6 Description: Makes a copy of the file source to dest.
H A Dcopy_variation14.phpt2 Test copy() function: usage variations - non existing src/dest
5 /* Prototype: bool copy ( string $source, string $dest );
6 Description: Makes a copy of the file source to dest.
H A Dcopy_variation15.phpt19 /* Prototype: bool copy ( string $source, string $dest );
20 Description: Makes a copy of the file source to dest.
41 $dest = $dir."/copy_copy_variation15.tmp";
H A Dcopy_variation10.phpt5 /* Prototype: bool copy ( string $source, string $dest );
6 Description: Makes a copy of the file source to dest.
H A Dcopy_error.phpt5 /* Prototype: bool copy ( string $source, string $dest );
6 * Description: Makes a copy of the file source to dest.
H A Dcopy_basic.phpt5 /* Prototype: bool copy ( string $source, string $dest );
6 * Description: Makes a copy of the file source to dest.
H A Dcopy_variation18.phpt5 /* Prototype: bool copy ( string $source, string $dest );
6 Description: Makes a copy of the file source to dest.
H A Dcopy_variation17.phpt5 /* Prototype: bool copy ( string $source, string $dest );
6 Description: Makes a copy of the file source to dest.
H A Dcopy_variation9.phpt20 /* Prototype: bool copy ( string $source, string $dest );
21 Description: Makes a copy of the file source to dest.
H A Dcopy_variation11.phpt5 /* Prototype: bool copy ( string $source, string $dest );
6 Description: Makes a copy of the file source to dest.
H A Dcopy_variation7.phpt11 /* Prototype: bool copy ( string $source, string $dest );
12 Description: Makes a copy of the file source to dest.
H A Dcopy_variation3-win32.phpt10 /* Prototype: bool copy ( string $source, string $dest );
11 Description: Makes a copy of the file source to dest.
/PHP-5.6/ext/standard/
H A Durl.c536 char *dest = str; in php_url_decode() local
541 *dest = ' '; in php_url_decode()
553 *dest = *data; in php_url_decode()
556 dest++; in php_url_decode()
558 *dest = '\0'; in php_url_decode()
559 return dest - str; in php_url_decode()
641 char *dest = str; local
655 *dest = *data;
658 dest++;
660 *dest = '\0';
[all …]
H A Dfile.h77 PHPAPI int php_copy_file(const char *src, const char *dest TSRMLS_DC);
78 PHPAPI int php_copy_file_ex(const char *src, const char *dest, int src_chk TSRMLS_DC);
79 PHPAPI int php_copy_file_ctx(const char *src, const char *dest, int src_chk, php_stream_context *ct…
H A Durl_scanner_ex.c107 static inline void append_modified_url(smart_str *url, smart_str *dest, smart_str *url_app, const c… in PHP_INI_END()
124 smart_str_append(dest, url); in PHP_INI_END()
134 smart_str_append(dest, url); in PHP_INI_END()
190 { smart_str_append(dest, url); return; } in PHP_INI_END()
219 smart_str_append(dest, url); in PHP_INI_END()
224 smart_str_appendl(dest, url->c, bash - url->c); in PHP_INI_END()
226 smart_str_append(dest, url); in PHP_INI_END()
228 smart_str_appends(dest, sep); in PHP_INI_END()
229 smart_str_append(dest, url_app); in PHP_INI_END()
232 smart_str_appendl(dest, bash, q - bash); in PHP_INI_END()
H A Durl_scanner_ex.re110 static inline void append_modified_url(smart_str *url, smart_str *dest, smart_str *url_app, const c…
127 smart_str_append(dest, url);
137 smart_str_append(dest, url);
146 ":" { smart_str_append(dest, url); return; }
155 smart_str_append(dest, url);
160 smart_str_appendl(dest, url->c, bash - url->c);
162 smart_str_append(dest, url);
164 smart_str_appends(dest, sep);
165 smart_str_append(dest, url_app);
168 smart_str_appendl(dest, bash, q - bash);
H A Dphp_array.h107 PHPAPI int php_array_merge(HashTable *dest, HashTable *src, int recursive TSRMLS_DC);
108 PHPAPI int php_array_replace_recursive(HashTable *dest, HashTable *src TSRMLS_DC);
/PHP-5.6/ext/intl/converter/
H A Dconverter.c31 UConverter *src, *dest; member
583 char *dest = src; in PHP_METHOD() local
596 php_converter_set_encoding(objval, &(objval->dest), dest, dest_len TSRMLS_CC); in PHP_METHOD()
631 if (objval->dest) { in PHP_METHOD()
689 char *dest; in php_converter_do_convert() local
731 efree(dest); in php_converter_do_convert()
735 *pdest = dest; in php_converter_do_convert()
781 char *str, *dest; in PHP_METHOD() local
814 char *str, *src, *dest; in PHP_METHOD() local
1041 if (objval->dest) { in php_converter_free_object()
[all …]
/PHP-5.6/ext/mbstring/libmbfl/mbfl/
H A Dmbfl_convert.h43 void (*filter_copy)(mbfl_convert_filter *src, mbfl_convert_filter *dest);
66 void (*filter_copy)(mbfl_convert_filter *src, mbfl_convert_filter *dest);
H A Dmbfl_memory_device.h64 MBFLAPI extern int mbfl_memory_device_devcat(mbfl_memory_device *dest, mbfl_memory_device *src);
/PHP-5.6/ext/pcre/pcrelib/sljit/
H A DsljitConfigInternal.h214 #define SLJIT_MEMMOVE(dest, src, len) memmove(dest, src, len) argument
218 #define SLJIT_ZEROMEM(dest, len) memset(dest, 0, len) argument
/PHP-5.6/ext/pdo/
H A Dpdo.c69 char *dest = emalloc(len + 1); in php_pdo_str_tolower_dup() local
70 zend_str_tolower_copy(dest, src, len); in php_pdo_str_tolower_dup()
71 return dest; in php_pdo_str_tolower_dup()
H A Dpdo_stmt.c570 ZVAL_NULL(dest); in fetch_value()
583 ZVAL_NULL(dest); in fetch_value()
591 ZVAL_NULL(dest); in fetch_value()
596 ZVAL_NULL(dest); in fetch_value()
604 ZVAL_EMPTY_STRING(dest); in fetch_value()
629 ZVAL_NULL(dest); in fetch_value()
648 ZVAL_NULL(dest); in fetch_value()
654 convert_to_long_ex(&dest); in fetch_value()
675 switch (Z_TYPE_P(dest)) { in fetch_value()
678 convert_to_string(dest); in fetch_value()
[all …]
/PHP-5.6/win32/build/
H A Dconfutils.js1720 var dest;
1728 dest = PHP_DIR + "/script/";
1730 if (!FSO.FolderExists(dest)) {
1731 FSO.CreateFolder(dest);
1734 if (FSO.FileExists(dest + "/ext_pickle.js")) {
1782 dest = PHP_DIR + "/include/main";
1799 if (FSO.FileExists(dest + "/config.pickle.h")) {
1915 dest = get_define("BUILD_DIR") + '/devel';
1917 if (!FSO.FolderExists(dest)) {
1918 FSO.CreateFolder(dest);
[all …]

Completed in 101 milliseconds

12345